Skip to content

Commit

Permalink
GitHub Actions: Bump macOS runner from 13 to 14 (#874)
Browse files Browse the repository at this point in the history
* Upgrade to macOS 14 runner

* Bump ruby/setup-ruby from 1.170.0 to 1.171.0
  • Loading branch information
ivan-magda authored Feb 5, 2024
1 parent 6e6a441 commit fa30792
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-android/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ runs:

- name: Setup Ruby
if: ${{ inputs.setup-ruby == 'true' }}
uses: ruby/setup-ruby@v1.170.0
uses: ruby/setup-ruby@v1.171.0
with:
ruby-version: '3.3.0'
bundler-cache: true
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-ios/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ runs:
shell: bash

- name: Setup Ruby
uses: ruby/setup-ruby@v1.170.0
uses: ruby/setup-ruby@v1.171.0
with:
ruby-version: '3.3.0'
bundler-cache: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/automerge_into_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
automerge:
needs: files-changed
name: Automerge
runs-on: macos-13
runs-on: macos-14

steps:
- name: Checkout
Expand All @@ -37,7 +37,7 @@ jobs:
token: ${{ secrets.GH_PAT }}

- name: Setup Ruby
uses: ruby/setup-ruby@v1.170.0
uses: ruby/setup-ruby@v1.171.0
with:
ruby-version: "3.3.0"
bundler-cache: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_caches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
needs: files-changed
if: ${{ github.event_name == 'workflow_dispatch' || needs.files-changed.outputs.ios == 'true' }}
name: Build iOS Caches
runs-on: macos-13
runs-on: macos-14
timeout-minutes: 60

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ jobs:
needs: files-changed
if: ${{ needs.files-changed.outputs.ios == 'true' || needs.files-changed.outputs.shared == 'true' }}
name: Run SwiftLint
runs-on: macos-13
runs-on: macos-14
timeout-minutes: 10

steps:
- name: Checkout
uses: actions/[email protected]

- name: Setup Ruby
uses: ruby/setup-ruby@v1.170.0
uses: ruby/setup-ruby@v1.171.0
with:
ruby-version: '3.3.0'
bundler-cache: true
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
build-ios:
needs: swiftlint
name: Build iOS
runs-on: macos-13
runs-on: macos-14
timeout-minutes: 30

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios_beta_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
deployment:
name: iOS Beta Deployment
needs: gradle-wrapper-validation
runs-on: macos-13
runs-on: macos-14
environment: ios_production
timeout-minutes: 60

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios_release_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
deployment:
name: iOS Release Deployment
needs: gradle-wrapper-validation
runs-on: macos-13
runs-on: macos-14
environment: ios_production
timeout-minutes: 60

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios_unit_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
test:
if: ${{ vars.IS_IOS_UNIT_TESTING_ENABLED == 'true' }}
name: Run iOS unit tests
runs-on: macos-13
runs-on: macos-14
timeout-minutes: 60

steps:
Expand Down

0 comments on commit fa30792

Please sign in to comment.