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/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Download coverage artifact
uses: actions/download-artifact@v8
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
skip-merge-queue: ${{ steps.check-skip-merge-queue.outputs.up-to-date }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
if: github.event_name == 'merge_group'

- name: Check pull request merge queue status
Expand All @@ -34,7 +34,7 @@ jobs:
if: github.event_name != 'merge_group' || needs.check-skip-merge-queue.outputs.skip-merge-queue != 'true'
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Download actionlint
id: download-actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/7fdc9630cc360ea1a469eed64ac6d78caeda1234/scripts/download-actionlint.bash) 1.7.7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
outputs:
IS_FORK: ${{ steps.is-fork.outputs.IS_FORK }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Determine whether this PR is from a fork
id: is-fork
run: echo "IS_FORK=$(gh pr view --json isCrossRepository --jq '.isCrossRepository' "${PR_NUMBER}" )" >> "$GITHUB_OUTPUT"
Expand All @@ -29,7 +29,7 @@ jobs:
if: ${{ needs.is-fork-pull-request.outputs.IS_FORK == 'false' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Checkout pull request
run: gh pr checkout "${PR_NUMBER}"
env:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/update-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
pull-requests: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Determine whether this PR is from a fork
id: is-fork
run: echo "IS_FORK=$(gh pr view --json isCrossRepository --jq '.isCrossRepository' "${PR_NUMBER}" )" >> "$GITHUB_OUTPUT"
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
pull_requests: read

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Checkout pull request
run: gh pr checkout "${PR_NUMBER}"
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
pull_requests: read

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Checkout pull request
run: gh pr checkout "${PR_NUMBER}"
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
pull_requests: read

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Checkout pull request
run: gh pr checkout "${PR_NUMBER}"
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
pull_requests: read

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Checkout pull request
run: gh pr checkout "${PR_NUMBER}"
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
pull_requests: read

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Checkout pull request
run: gh pr checkout "${PR_NUMBER}"
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
pull_requests: read

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Use PAT to ensure that the commit later can trigger status check
# workflows.
Expand Down
Loading