diff --git a/.github/workflows/iOS.yml b/.github/workflows/iOS.yml index 7ca222006..08ce59c54 100644 --- a/.github/workflows/iOS.yml +++ b/.github/workflows/iOS.yml @@ -28,7 +28,7 @@ jobs: # well on Windows or Mac. You can convert this to a matrix build if you need # cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: macos-latest + runs-on: macos-11 steps: - uses: actions/checkout@v4 @@ -39,8 +39,8 @@ jobs: uses: actions/cache@v4 with: path: build - key: ${{ github.workflow }}-v3-${{ github.sha }} - restore-keys: ${{ github.workflow }}-v3- + key: ${{ github.workflow }}-v4-${{ github.sha }} + restore-keys: ${{ github.workflow }}-v4- - name: Configure CMake # Use a bash shell so we can use the same syntax for environment variable diff --git a/.github/workflows/macOS_x86_64.yml b/.github/workflows/macOS_x86_64.yml index f7730e568..821535f16 100644 --- a/.github/workflows/macOS_x86_64.yml +++ b/.github/workflows/macOS_x86_64.yml @@ -25,7 +25,7 @@ concurrency: jobs: build: - runs-on: macos-latest + runs-on: macos-11 steps: - uses: actions/checkout@v4 with: @@ -38,8 +38,8 @@ jobs: uses: actions/cache@v4 with: path: build - key: ${{ github.workflow }}-v1-${{ github.sha }} - restore-keys: ${{ github.workflow }}-v1- + key: ${{ github.workflow }}-v2-${{ github.sha }} + restore-keys: ${{ github.workflow }}-v2- - name: Build working-directory: ${{github.workspace}}