From 9b393e2ddb7e8e2b0109524da6224592efa8220e Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Mon, 25 Nov 2024 14:43:48 -0500 Subject: [PATCH] ci: update minimum macOS supported version to Ventura (13) (#3780) macOS 12 has been end of life for 2 months, GitHub is removing support for the images very soon (within a week or so). https://endoflife.date/macos --- .github/workflows/macos-build-arm.yaml | 4 ++-- .github/workflows/macos-build.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/macos-build-arm.yaml b/.github/workflows/macos-build-arm.yaml index 7f10156a841..12e91d59493 100644 --- a/.github/workflows/macos-build-arm.yaml +++ b/.github/workflows/macos-build-arm.yaml @@ -27,8 +27,8 @@ jobs: uses: hendrikmuhs/ccache-action@v1.2.14 with: variant: sccache - key: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} - restore-keys: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} + key: macos-15-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} + restore-keys: macos-15-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} max-size: 1000M - name: CMake Generation diff --git a/.github/workflows/macos-build.yaml b/.github/workflows/macos-build.yaml index 4ee2097f776..abe4c4f697a 100644 --- a/.github/workflows/macos-build.yaml +++ b/.github/workflows/macos-build.yaml @@ -17,7 +17,7 @@ on: jobs: build: name: Intel - runs-on: macos-12 + runs-on: macos-13 timeout-minutes: 120 steps: @@ -41,8 +41,8 @@ jobs: uses: hendrikmuhs/ccache-action@v1.2.14 with: variant: sccache - key: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} - restore-keys: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} + key: macos-13-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} + restore-keys: macos-13-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} max-size: 1000M - name: CMake Generation