From 14ae8c52e7d608e5151b320278feb9853ce42e85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 06:04:51 +0000 Subject: [PATCH] chore: Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-lint-test.yml | 2 +- .github/workflows/main.yml | 4 ++-- .github/workflows/publish-preview.yml | 4 ++-- .github/workflows/update-pull-request.yml | 14 +++++++------- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-lint-test.yml b/.github/workflows/build-lint-test.yml index 95f18dd5ed..0a1fabb507 100644 --- a/.github/workflows/build-lint-test.yml +++ b/.github/workflows/build-lint-test.yml @@ -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: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7f0800ef2c..500ca6202b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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 diff --git a/.github/workflows/publish-preview.yml b/.github/workflows/publish-preview.yml index e5c2b7851c..dc445112f5 100644 --- a/.github/workflows/publish-preview.yml +++ b/.github/workflows/publish-preview.yml @@ -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" @@ -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: diff --git a/.github/workflows/update-pull-request.yml b/.github/workflows/update-pull-request.yml index 0e523aed56..38accc00dd 100644 --- a/.github/workflows/update-pull-request.yml +++ b/.github/workflows/update-pull-request.yml @@ -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" @@ -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}" @@ -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}" @@ -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}" @@ -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}" @@ -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}" @@ -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.