From fe675a4fba28312872aa91f6ca9aeb4e4832be16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 16:36:40 +0000 Subject: [PATCH] ci(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/auto-release.yml | 2 +- .github/workflows/build.yml | 50 ++++++++++----------- .github/workflows/canary.yml | 4 +- .github/workflows/cleanup-pr-caches.yml | 2 +- .github/workflows/clear-cache.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/external-contributors.yml | 2 +- .github/workflows/flaky-test-detector.yml | 2 +- .github/workflows/gitflow-sync-develop.yml | 2 +- .github/workflows/release.yml | 2 +- 10 files changed, 35 insertions(+), 35 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index cfaf6db8abef..f693c62d765d 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -20,7 +20,7 @@ jobs: app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }} private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }} - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ steps.token.outputs.token }} fetch-depth: 0 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 881b5f4b6580..44fc3ced316a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,7 +71,7 @@ jobs: pull-requests: read steps: - name: Check out current commit - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} # We need to check out not only the fake merge commit between the PR and the base branch which GH creates, but @@ -131,13 +131,13 @@ jobs: (needs.job_get_metadata.outputs.is_gitflow_sync == 'false' && needs.job_get_metadata.outputs.has_gitflow_label == 'false') steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: github.event_name == 'pull_request' with: ref: ${{ github.event.pull_request.base.sha }} - name: 'Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} @@ -238,7 +238,7 @@ jobs: needs.job_get_metadata.outputs.is_release == 'true' steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -267,7 +267,7 @@ jobs: needs.job_get_metadata.outputs.is_base_branch == 'true' || needs.job_get_metadata.outputs.is_release == 'true' steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -296,7 +296,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -325,7 +325,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} @@ -348,7 +348,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -370,7 +370,7 @@ jobs: if: needs.job_get_metadata.outputs.is_release == 'true' steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -405,13 +405,13 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: github.event_name == 'pull_request' with: ref: ${{ github.event.pull_request.base.sha }} - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -452,7 +452,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -477,7 +477,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -509,12 +509,12 @@ jobs: node: [18, 20, 22, 24] steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: github.event_name == 'pull_request' with: ref: ${{ github.event.pull_request.base.sha }} - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -603,7 +603,7 @@ jobs: steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -667,7 +667,7 @@ jobs: steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -715,7 +715,7 @@ jobs: timeout-minutes: 5 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -753,7 +753,7 @@ jobs: typescript: '3.8' steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -789,7 +789,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -817,7 +817,7 @@ jobs: node: [18, 20, 22, 24] steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -864,12 +864,12 @@ jobs: matrix-optional: ${{ steps.matrix-optional.outputs.matrix }} steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: github.event_name == 'pull_request' with: ref: ${{ github.event.pull_request.base.sha }} - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -934,7 +934,7 @@ jobs: matrix: ${{ fromJson(needs.job_e2e_prepare.outputs.matrix) }} steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - uses: pnpm/action-setup@v4 @@ -1064,7 +1064,7 @@ jobs: steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - uses: pnpm/action-setup@v4 diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 57290080c8de..1e71125ddad2 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -31,7 +31,7 @@ jobs: timeout-minutes: 30 steps: - name: Check out current commit - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -117,7 +117,7 @@ jobs: steps: - name: Check out current commit - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.HEAD_COMMIT }} - uses: pnpm/action-setup@v4 diff --git a/.github/workflows/cleanup-pr-caches.yml b/.github/workflows/cleanup-pr-caches.yml index 2c9bba513605..eb65d9a642c1 100644 --- a/.github/workflows/cleanup-pr-caches.yml +++ b/.github/workflows/cleanup-pr-caches.yml @@ -14,7 +14,7 @@ jobs: contents: read steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cleanup run: | diff --git a/.github/workflows/clear-cache.yml b/.github/workflows/clear-cache.yml index 0f5f2241b34a..3c76486cdbe2 100644 --- a/.github/workflows/clear-cache.yml +++ b/.github/workflows/clear-cache.yml @@ -23,7 +23,7 @@ jobs: name: Delete all caches runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Node uses: actions/setup-node@v6 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6d6b67201d5e..00e6203b6b55 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -46,7 +46,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/external-contributors.yml b/.github/workflows/external-contributors.yml index c085f9958452..9a0f85cdea7e 100644 --- a/.github/workflows/external-contributors.yml +++ b/.github/workflows/external-contributors.yml @@ -20,7 +20,7 @@ jobs: && github.event.pull_request.author_association != 'OWNER' && endsWith(github.event.pull_request.user.login, '[bot]') == false steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Node uses: actions/setup-node@v6 with: diff --git a/.github/workflows/flaky-test-detector.yml b/.github/workflows/flaky-test-detector.yml index a6ed22e04f6a..bb3169ecb410 100644 --- a/.github/workflows/flaky-test-detector.yml +++ b/.github/workflows/flaky-test-detector.yml @@ -30,7 +30,7 @@ jobs: if: ${{ github.base_ref != 'master' && github.ref != 'refs/heads/master' }} steps: - name: Check out current branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Node uses: actions/setup-node@v6 with: diff --git a/.github/workflows/gitflow-sync-develop.yml b/.github/workflows/gitflow-sync-develop.yml index 96c69d952264..ff649d6ee204 100644 --- a/.github/workflows/gitflow-sync-develop.yml +++ b/.github/workflows/gitflow-sync-develop.yml @@ -23,7 +23,7 @@ jobs: contents: write steps: - name: git checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 # https://github.com/marketplace/actions/github-pull-request-action - name: Create Pull Request diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2cb3fcd9600..0ff10040dc97 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: with: app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }} private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }} - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ steps.token.outputs.token }} fetch-depth: 0