From c2ce15c652aa147b797fddaaf3fac9d9a0b62b84 Mon Sep 17 00:00:00 2001 From: Felix Weiglhofer Date: Tue, 29 Oct 2024 14:08:59 +0100 Subject: [PATCH] ci: Fix MacOS. --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 858bca5..d988968 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -143,9 +143,10 @@ jobs: macos: strategy: - matrix: [macos-13, macos-14, macos-15] + matrix: + version: [13, 14, 15] - runs-on: ${{ matrix.os }} + runs-on: macos-${{ matrix.version }} steps: - uses: actions/checkout@v4