From 5b7d55d2819459e3cf843aef58503965455f998e Mon Sep 17 00:00:00 2001 From: Fabio Baltieri Date: Thu, 1 Feb 2024 14:39:46 +0000 Subject: [PATCH] ci: align the runner list with the main repository Use the same runner list as the main repository ones. Originally I meant to just add macos-14 so we cover macOS ARM, which is nice because it runs on qemu-m0 from the brew package, but at this point let's also use explicit version for the other runners too. Signed-off-by: Fabio Baltieri --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7b1aaa0..8df701c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-22.04, macos-12, macos-14, windows-2022] runs-on: ${{ matrix.os }} steps: - name: Checkout