From ac3993dd55da12c92fdf59966396fa6f469487e3 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 17 Aug 2024 10:28:29 +0100 Subject: [PATCH] Move CI to Ubuntu 24.04 Currently in beta (see https://github.com/actions/runner-images) but should be stable enough for us. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 63541fc..738be26 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ concurrency: jobs: tests: name: Python ${{ matrix.python-version }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: @@ -51,7 +51,7 @@ jobs: coverage: name: Coverage - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: tests steps: - uses: actions/checkout@v4