From 7ee4ef1b253006d7dc944fffe141f82f38a2cdbd Mon Sep 17 00:00:00 2001 From: David Delassus Date: Wed, 29 May 2024 01:11:12 +0200 Subject: [PATCH] :construction_worker: :alien: :bug: use `ubuntu-24.04` runner for `gcc-13` --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1540f69..4b09efe 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,16 +9,19 @@ on: jobs: build: - runs-on: ubuntu-latest strategy: matrix: compiler: - package: gcc-13 bin: g++ + os: ubuntu-24.04 - package: gcc-12 bin: g++ + os: ubuntu-latest - package: gcc-11 bin: g++ + os: ubuntu-latest + runs-on: ${{ matrix.compiler.os }} steps: - name: checkout-scm uses: actions/checkout@v3