From ec3f387f21ed97b504eaa4e7cee6bed8cf13bdbb Mon Sep 17 00:00:00 2001 From: deadprogram Date: Sun, 8 Dec 2024 19:08:16 +0100 Subject: [PATCH] fix: specify ubuntu-22.04 during GH actions transition period to ubuntu-24.04 See https://github.com/actions/runner-images/issues/10636 Signed-off-by: deadprogram --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 206e6b767..8d5976777 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -169,7 +169,7 @@ jobs: assert-test-linux: # Run all tests that can run on Linux, with LLVM assertions enabled to catch # potential bugs. - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4