From c16022ad53e0389d11419a6ae57d42cfdbd24f9f Mon Sep 17 00:00:00 2001 From: Andrew Farries Date: Mon, 9 Dec 2024 07:33:34 +0000 Subject: [PATCH] Update `publish_benchmarks` workflow to use `ubuntu-24.04` Update the runner used by all jobs in the `build` workflow to use `ubuntu-24.04` instead of `ubuntu-latest`. `ubuntu-24.04` will become `ubuntu-latest over the next month, see: https://github.com/actions/runner-images/issues/10636 --- .github/workflows/publish_benchmarks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_benchmarks.yaml b/.github/workflows/publish_benchmarks.yaml index eb736565..28be1671 100644 --- a/.github/workflows/publish_benchmarks.yaml +++ b/.github/workflows/publish_benchmarks.yaml @@ -23,7 +23,7 @@ concurrency: jobs: publish: name: Publish benchmarks - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v2 @@ -64,4 +64,4 @@ jobs: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 \ No newline at end of file + uses: actions/deploy-pages@v4