Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to macOS 15-based Runners to Sync with Self-Hosted Runners #92

Merged
merged 1 commit into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/archive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ on:
JSON-based collection of labels indicating which type of github runner should be chosen.
type: string
required: false
default: '["macos-14"]'
default: '["macos-15"]'
sdk:
description: |
JSON-based collection of SDK for the exported framework. Defaults to all SDKs.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-and-upload-coverage-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
jobs:
create-and-upload-coverage-report:
name: Create and upload coverage report
runs-on: macos-14
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- uses: maxim-lobanov/setup-xcode@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docc-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
JSON-based collection of labels indicating which type of github runner should be chosen
required: false
type: string
default: '["macos-14"]'
default: '["macos-15"]'
xcodeversion:
description: |
The Xcode version used for the build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/periphery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
description: 'JSON-based collection of labels indicating which type of github runner should be chosen'
required: false
type: string
default: '["macos-14"]'
default: '["macos-15"]'
xcodeversion:
description: 'The Xcode version used for the build'
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/xcframework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ on:
JSON-based collection of labels indicating which type of github runner should be chosen.
type: string
required: false
default: '["macos-14"]'
default: '["macos-15"]'
sdk:
description: |
JSON-based collection of SDK for the exported framework.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/xcodebuild-or-fastlane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
JSON-based collection of labels indicating which type of github runner should be chosen.
required: false
type: string
default: '["macos-14"]'
default: '["macos-15"]'
xcodeversion:
description: |
The Xcode version used for the build.
Expand Down Expand Up @@ -386,7 +386,7 @@

if [ -n "${{ inputs.firebaseemulatorimport }}" ]; then
echo "Importing firebase emulator data from ${{ inputs.firebaseemulatorimport }}"
firebase emulators:exec -c ${{ inputs.firebasejsonpath }} --import=${{ inputs.firebaseemulatorimport }} 'fastlane ${{ inputs.fastlanelane }}'

Check warning on line 389 in .github/workflows/xcodebuild-or-fastlane.yml

View workflow job for this annotation

GitHub Actions / YAML Lint Check

389:151 [line-length] line too long (161 > 150 characters)
else
firebase emulators:exec -c ${{ inputs.firebasejsonpath }} 'fastlane ${{ inputs.fastlanelane }}'
fi
Expand Down
Loading