From 5fa980f1502e7354d478cdd3e54b571870793029 Mon Sep 17 00:00:00 2001 From: Remi Bernotavicius Date: Sun, 8 Sep 2024 15:43:11 -0700 Subject: [PATCH] Let's try updating the github action runners to 24.04 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d027b9b..3e8e54c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: [ push, workflow_dispatch ] jobs: check_nix_packages: name: Check Nix Flake - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Get Repository from Git uses: actions/checkout@v4 @@ -17,7 +17,7 @@ jobs: lint: name: Run Rustfmt and Clippy on Rust - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Get Repository from Git uses: actions/checkout@v4 @@ -35,7 +35,7 @@ jobs: run_all_tests_on_maelstrom: name: Run All Maelstrom Tests on Maelstrom - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Get Repository from Git uses: actions/checkout@v4 @@ -62,7 +62,7 @@ jobs: deploy-documentation: name: Build and Deploy Documentation - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 permissions: contents: write # To push a branch pages: write # To push to a GitHub Pages site