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/move-major-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Force-move major tag
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prebuild-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,13 @@ jobs:
# resolves against the workspace root. `persist-credentials: false`
# keeps the caller's GITHUB_TOKEN off disk — see the comment in
# prebuild.yml.
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false

# Same-ref harness checkout — see the comment in prebuild.yml.
- name: Checkout prebuild harness
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ job.workflow_repository }}
ref: ${{ job.workflow_sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
# keeps the caller's GITHUB_TOKEN out of $GITHUB_WORKSPACE/.git/config
# so the untrusted `npm install` of the target module (with lifecycle
# scripts) below can't read a (release-write-capable) token off disk.
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false

Expand All @@ -107,7 +107,7 @@ jobs:
# workflow version — no @main pin that can drift from tagged
# callers, and branch dispatches test in-flight action changes.
- name: Checkout prebuild harness
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ job.workflow_repository }}
ref: ${{ job.workflow_sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ jobs:
fi

- name: Checkout caller repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Checkout test harness
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ job.workflow_repository }}
ref: ${{ inputs.harness_ref || job.workflow_sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ jobs:
timeout-minutes: 45
steps:
- name: Checkout caller repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Checkout test harness
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ job.workflow_repository }}
ref: ${{ inputs.harness_ref || job.workflow_sha }}
Expand Down