Skip to content

Commit

Permalink
ci: Update CI to use latest version of xCode
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonStalnaker committed Mar 6, 2024
1 parent 02aff5b commit 8ef6f38
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
# Job name is Test
name: Test
# This job runs on macOS
runs-on: macOS-latest
runs-on: macOS-13
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Dependencies
run: |
sudo gem install cocoapods
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/ios-kit-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:

create-release-branch:
name: Create release branch
runs-on: macOS-12
runs-on: macOS-13
needs: confirm-main-branch
steps:
- name: Checkout development branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.repository }}
token: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
Expand All @@ -33,14 +33,17 @@ jobs:
release:
name: Perform release
runs-on: macOS-12
runs-on: macOS-13
needs: create-release-branch
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_15.2.app

- name: Validate environment
run: |
Expand All @@ -53,7 +56,7 @@ jobs:
git config user.name "mParticle Automation"
- name: Checkout main branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
repository: ${{ github.repository }}
Expand Down Expand Up @@ -114,7 +117,7 @@ jobs:
sync-repository:
name: Finalize release
needs: release
runs-on: macOS-12
runs-on: macOS-13
steps:
- name: Checkout main branch
uses: actions/checkout@v3
Expand Down

0 comments on commit 8ef6f38

Please sign in to comment.