Skip to content

Commit

Permalink
chore: update build machine to macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathannorris committed Dec 18, 2024
1 parent ca08da3 commit 88523a5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ on:

jobs:
build:
runs-on: macos-13-large
runs-on: macos-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: 'Select Latest Xcode'
- name: "Select Latest Xcode"
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: 'Carthage Cached Bootstrap'
- name: "Carthage Cached Bootstrap"
uses: DevCycleHQ/carthage-bootstrap@xcframeworks2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build:
runs-on: macos-13-large
runs-on: macos-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
Expand All @@ -16,7 +16,7 @@ jobs:
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: 'Carthage Cached Bootstrap'
- name: "Carthage Cached Bootstrap"
uses: DevCycleHQ/carthage-bootstrap@xcframeworks2
with:
github-token: ${{ secrets.AUTOMATION_USER_TOKEN }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/publish-pod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
publish-cocoapods:
runs-on: macos-13
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -27,4 +27,3 @@ jobs:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
run: |
pod trunk push DevCycle.podspec --allow-warnings --verbose
4 changes: 2 additions & 2 deletions .github/workflows/tvos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Build and Test tvOS

on:
pull_request:
branches: [ main ]
branches: [main]

jobs:
build:
runs-on: macos-13-large
runs-on: macos-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/watchos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Build and Test watchOS

on:
pull_request:
branches: [ main ]
branches: [main]

jobs:
build:
runs-on: macos-13-large
runs-on: macos-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
Expand Down

0 comments on commit 88523a5

Please sign in to comment.