From 37fa3ba0e183e459fb93c4a71ff6ec55b200f429 Mon Sep 17 00:00:00 2001 From: Echo Date: Mon, 27 Apr 2026 20:18:47 +0000 Subject: [PATCH] Update CI to use ubuntu-24.04 for all jobs --- .gitea/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 30c2487..3696282 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: rust-format: name: Rust Format Check - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Install checkout dependencies run: | @@ -50,7 +50,7 @@ jobs: clippy: name: Clippy Lints - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Install system dependencies run: | @@ -83,7 +83,7 @@ jobs: rust-test: name: Rust Unit Tests - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Install system dependencies run: | @@ -115,7 +115,7 @@ jobs: security-audit: name: Security Audit - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Install checkout dependencies run: | @@ -192,7 +192,7 @@ jobs: build-and-release: name: Build .deb & Release - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [rust-format, clippy, rust-test, security-audit, frontend-lint] if: startsWith(github.ref, 'refs/tags/v') steps: