From 0c7774992a6e219c554e176957a0a0204080efdc Mon Sep 17 00:00:00 2001 From: Michael Macias Date: Thu, 7 Nov 2024 09:34:56 -0600 Subject: [PATCH] github/workflows/ci: Run on ubuntu-24.04 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1fad9e24..a3d421b2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: format: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: Update Rust @@ -14,7 +14,7 @@ jobs: - run: cargo fmt -- --check lint: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: Update Rust @@ -24,7 +24,7 @@ jobs: - run: cargo clippy --all-features -- --deny warnings test: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: Update Rust