diff --git a/.github/workflows/macos-build-arm.yaml b/.github/workflows/macos-build-arm.yaml index b9aea6fafd..aeac296914 100644 --- a/.github/workflows/macos-build-arm.yaml +++ b/.github/workflows/macos-build-arm.yaml @@ -13,7 +13,7 @@ on: jobs: build: name: ARM - runs-on: macos-latest + runs-on: macos-12 timeout-minutes: 120 steps: diff --git a/.github/workflows/macos-build.yaml b/.github/workflows/macos-build.yaml index 40b1358933..6be5adffdb 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-11 + runs-on: macos-12 timeout-minutes: 120 steps: @@ -31,8 +31,8 @@ jobs: uses: hendrikmuhs/ccache-action@v1.2.12 with: variant: sccache - key: macos-11-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} - restore-keys: macos-11-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} + key: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }} + restore-keys: macos-12-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }} max-size: 1000M - name: CMake Generation