diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 989338ca..397de394 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -8,7 +8,7 @@ jobs: # test is copied pasted from test.yml - do in a clean way in the future # BEGIN COPY PASTE FROM TEST.YML test: - runs-on: macos-latest + runs-on: macos-15 strategy: fail-fast: false @@ -23,7 +23,7 @@ jobs: run: fastlane ${{ matrix.platform }} tests pod-lint: - runs-on: macos-latest + runs-on: macos-15 steps: - uses: actions/checkout@v4 @@ -34,7 +34,7 @@ jobs: # END COPY PASTE FROM TEST.YML deploy-cocoapods: - runs-on: macos-latest + runs-on: macos-15 needs: [pod-lint, test] steps: @@ -47,7 +47,7 @@ jobs: COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} sign-and-build-frameworks: - runs-on: macos-latest + runs-on: macos-15 needs: [pod-lint, test] steps: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1baa174c..ade927a6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ on: jobs: test: - runs-on: macos-latest + runs-on: macos-15 strategy: fail-fast: false @@ -23,7 +23,7 @@ jobs: run: fastlane ${{ matrix.platform }} tests pod-lint: - runs-on: macos-latest + runs-on: macos-15 steps: - uses: actions/checkout@v3