From 6a55de1fa2423e0e0ba213a254d6ac511309981e Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 1 Oct 2025 15:52:45 +0200 Subject: [PATCH] github: Build on macOS 14 instead of the deprecated macOS 13 While macos-13 was running on Intel, both macos-latest (macOS 15) and macos-14 run on ARM64. While there are Intel-based images for 14 and 15, they will only be available until August 2027 (and there aren't any Intel devices anymore anyway). --- .github/workflows/macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 161976b1d..2ec7fcf0f 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -27,7 +27,7 @@ jobs: macos: strategy: matrix: - os: [macos-latest, macos-13] + os: [macos-latest, macos-14] needs: pre-check if: ${{ needs.pre-check.outputs.should_skip != 'true' }} runs-on: ${{ matrix.os }}