Skip to content

Use macos-15 and Xcode 16.2 in workflows #237

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

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/add_identifiers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
identifiers:
name: Add Identifiers
needs: validate
runs-on: macos-14
runs-on: macos-15
steps:
# Uncomment to manually select latest Xcode if needed
#- name: Select Latest Xcode
# run: "sudo xcode-select --switch /Applications/Xcode_13.0.app/Contents/Developer"
# run: "sudo xcode-select --switch /Applications/Xcode_16.2.app/Contents/Developer"

# Checks-out the repo
- name: Checkout Repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_loop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
build:
name: Build
needs: [validate, check_alive_and_permissions, check_latest_from_upstream]
runs-on: macos-14
runs-on: macos-15
permissions:
contents: write
if: | # runs if started manually, or if sync schedule is set and enabled and scheduled on the first Saturday each month, or if sync schedule is set and enabled and new commits were found
Expand All @@ -167,7 +167,7 @@ jobs:
)
steps:
- name: Select Xcode version
run: "sudo xcode-select --switch /Applications/Xcode_15.4.app/Contents/Developer"
run: "sudo xcode-select --switch /Applications/Xcode_16.2.app/Contents/Developer"

- name: Checkout Repo for syncing
if: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create_certs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
certificates:
name: Create Certificates
needs: validate
runs-on: macos-14
runs-on: macos-15
steps:
# Uncomment to manually select latest Xcode if needed
#- name: Select Latest Xcode
# run: "sudo xcode-select --switch /Applications/Xcode_13.0.app/Contents/Developer"
# run: "sudo xcode-select --switch /Applications/Xcode_16.2.app/Contents/Developer"

# Checks-out the repo
- name: Checkout Repo
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate_secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [workflow_call, workflow_dispatch]
jobs:
validate-access-token:
name: Access
runs-on: macos-14
runs-on: macos-15
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_TOKEN: ${{ secrets.GH_PAT }}
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
validate-match-secrets:
name: Match-Secrets
needs: validate-access-token
runs-on: macos-14
runs-on: macos-15
env:
GH_TOKEN: ${{ secrets.GH_PAT }}
steps:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
validate-fastlane-secrets:
name: Fastlane
needs: [validate-access-token, validate-match-secrets]
runs-on: macos-14
runs-on: macos-15
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_TOKEN: ${{ secrets.GH_PAT }}
Expand Down