diff --git a/.github/workflows/build-desktop.yml b/.github/workflows/build-desktop.yml index c4c1412af..d13502e41 100644 --- a/.github/workflows/build-desktop.yml +++ b/.github/workflows/build-desktop.yml @@ -45,7 +45,7 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-16, ubuntu-latest, windows-latest] + os: [macos-latest, ubuntu-latest, windows-latest] exclude: - os: ${{ github.event.inputs.store == 'true' && 'ubuntu-latest' }} diff --git a/.github/workflows/build-ios-development.yml b/.github/workflows/build-ios-development.yml index 8f2e595f4..2b62357fa 100644 --- a/.github/workflows/build-ios-development.yml +++ b/.github/workflows/build-ios-development.yml @@ -29,7 +29,7 @@ jobs: if [ -n "$available" ]; then echo "runner-label=self-hosted" >> $GITHUB_OUTPUT else - echo "runner-label=macos-16" >> $GITHUB_OUTPUT + echo "runner-label=macos-latest" >> $GITHUB_OUTPUT fi build-ipa-device-self-hosted: @@ -71,9 +71,9 @@ jobs: build-ipa-device-github: name: Build iOS IPA for device (GitHub-hosted) - if: github.secret_source != 'None' && needs.check-runner.outputs.runner-label == 'macos-16' + if: github.secret_source != 'None' && needs.check-runner.outputs.runner-label == 'macos-latest' needs: check-runner - runs-on: macos-16 + runs-on: macos-latest steps: - name: 📦 Checkout code @@ -117,7 +117,7 @@ jobs: build-simulator: name: Build iOS IPA for simulator if: github.secret_source != 'None' - runs-on: macos-16 + runs-on: macos-latest steps: - name: 📦 Checkout code diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index c810f7737..24334ea0b 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -36,7 +36,7 @@ jobs: if [ -n "$available" ]; then echo "runner-label=self-hosted" >> $GITHUB_OUTPUT else - echo "runner-label=macos-16" >> $GITHUB_OUTPUT + echo "runner-label=macos-latest" >> $GITHUB_OUTPUT fi build-ipa-self-hosted: @@ -83,9 +83,9 @@ jobs: build-ipa-github: name: Build iOS IPA (GitHub) - if: github.secret_source != 'None' && needs.check-runner.outputs.runner-label == 'macos-16' + if: github.secret_source != 'None' && needs.check-runner.outputs.runner-label == 'macos-latest' needs: check-runner - runs-on: macos-16 + runs-on: macos-latest steps: - name: 📦 Checkout code