From e583b654be153610151485f1ab14409f6b99aad8 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Sat, 4 Oct 2025 09:18:05 -0700 Subject: [PATCH] Replace Ubuntu 20.04 runners with 24.04. Ubuntu 20.04 Github-hosted runners are now deprecated. --- .github/workflows/cibuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 3ace428..b3a7830 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -12,7 +12,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04] + os: [ubuntu-22.04, ubuntu-24.04] compiler: [gcc, clang] steps: - uses: actions/checkout@v1