From: Tobias Brunner Date: Wed, 1 Oct 2025 13:52:45 +0000 (+0200) Subject: github: Build on macOS 14 instead of the deprecated macOS 13 X-Git-Tag: 6.0.3rc1~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6a55de1fa2423e0e0ba213a254d6ac511309981e;p=thirdparty%2Fstrongswan.git 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). --- diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 161976b1d2..2ec7fcf0f2 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 }}