Skip to content
Open
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/CodeQL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Select Xcode
# Match Tests.yml: pick the highest non-beta Xcode 26.x available.
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Always deploy from main. `workflow_run` fires Documentation
# in the default branch's context (develop), but main is the
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
BUMP: ${{ inputs.bump || 'patch' }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Narrow remote refspec
# Override `remote.origin.fetch` so subsequent `git fetch --tags`
# calls (run by fastlane's `git_pull(only_tags: true)` inside
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ReleaseTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
DANGER_GITHUB_API_TOKEN: ${{secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Select Xcode
# Plain Apple tooling, no third-party action. Glob picks the highest
# Xcode 26.x.y installed on the runner so a runner-image refresh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
DANGER_GITHUB_API_TOKEN: ${{secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Select Xcode
# Plain Apple tooling, no third-party action. Glob picks the highest
# Xcode 26.x.y installed on the runner so a runner-image refresh
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
runs-on: macos-26
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Select Xcode
# Plain Apple tooling, no third-party action. Glob picks the highest
# Xcode 26.x.y installed on the runner so a runner-image refresh
Expand Down
Loading