diff --git a/.github/workflows/auto-fix-issue.yml b/.github/workflows/auto-fix-issue.yml index f61fd51e2790..d796004408e9 100644 --- a/.github/workflows/auto-fix-issue.yml +++ b/.github/workflows/auto-fix-issue.yml @@ -60,7 +60,7 @@ jobs: echo "Processing issue #$ISSUE_NUM in CI mode" - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: develop diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 439cd6c11a41..a4ec85b10719 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -24,7 +24,7 @@ jobs: client-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }} private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ steps.token.outputs.token }} fetch-depth: 0 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f8674b6ec3c6..dfbedd4e332e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,13 +80,13 @@ jobs: (needs.job_get_metadata.outputs.is_gitflow_sync == 'false' && needs.job_get_metadata.outputs.has_gitflow_label == 'false' && needs.job_get_metadata.outputs.changed_any_code == 'true') steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 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@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} @@ -191,7 +191,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -230,7 +230,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -287,7 +287,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@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -319,7 +319,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -346,7 +346,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@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -371,7 +371,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} @@ -394,7 +394,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -416,7 +416,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@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -466,13 +466,13 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 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@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -500,7 +500,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -527,7 +527,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -559,12 +559,12 @@ jobs: node: [18, 20, 22, 24, 26] steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 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@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -645,7 +645,7 @@ jobs: steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -707,7 +707,7 @@ jobs: steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -753,7 +753,7 @@ jobs: timeout-minutes: 5 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -802,7 +802,7 @@ jobs: use_orchestrion: 'true' steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -833,7 +833,7 @@ jobs: timeout-minutes: 5 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -867,7 +867,7 @@ jobs: typescript: '3.8' steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -895,7 +895,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -918,7 +918,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} # The fixtures install the locally-packed `@sentry/bundler-plugins` tarball with pnpm. @@ -946,7 +946,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -978,7 +978,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -1034,7 +1034,7 @@ jobs: matrix: ${{ fromJson(needs.job_build.outputs.e2e-matrix) }} steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0 @@ -1172,7 +1172,7 @@ jobs: steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0 @@ -1284,7 +1284,7 @@ jobs: steps: - name: Check out current commit if: github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure') - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: sparse-checkout: | .github diff --git a/.github/workflows/bump-size-limits.yml b/.github/workflows/bump-size-limits.yml index 9017a0d5e14e..c1655b6d9922 100644 --- a/.github/workflows/bump-size-limits.yml +++ b/.github/workflows/bump-size-limits.yml @@ -35,7 +35,7 @@ jobs: private-key: ${{ secrets.GITFLOW_APP_PRIVATE_KEY }} - name: Checkout develop - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: develop token: ${{ steps.app-token.outputs.token }} diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 576aa8385014..af6a476e7940 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@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -123,7 +123,7 @@ jobs: steps: - name: Check out current commit - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.HEAD_COMMIT }} - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0 diff --git a/.github/workflows/ci-metadata.yml b/.github/workflows/ci-metadata.yml index 8f9e8242aab0..39be39fc5339 100644 --- a/.github/workflows/ci-metadata.yml +++ b/.github/workflows/ci-metadata.yml @@ -43,7 +43,7 @@ jobs: pull-requests: read steps: - name: Check out current commit - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.head_commit }} # We need to check out not only the fake merge commit between the PR and the base branch which GH creates, but diff --git a/.github/workflows/cleanup-pr-caches.yml b/.github/workflows/cleanup-pr-caches.yml index eb65d9a642c1..e4543e524c91 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@v6 + uses: actions/checkout@v7 - name: Cleanup run: | diff --git a/.github/workflows/clear-cache.yml b/.github/workflows/clear-cache.yml index 3c76486cdbe2..554c632be354 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@v6 + - uses: actions/checkout@v7 - name: Set up Node uses: actions/setup-node@v6 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 00e6203b6b55..4e41c7f5d145 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@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/dependabot-auto-triage.yml b/.github/workflows/dependabot-auto-triage.yml index 9839f41b1fe9..827a44a771c2 100644 --- a/.github/workflows/dependabot-auto-triage.yml +++ b/.github/workflows/dependabot-auto-triage.yml @@ -62,7 +62,7 @@ jobs: private-key: ${{ secrets.GITFLOW_APP_PRIVATE_KEY }} - name: Checkout develop - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: develop token: ${{ steps.app-token.outputs.token }} @@ -139,7 +139,7 @@ jobs: private-key: ${{ secrets.GITFLOW_APP_PRIVATE_KEY }} - name: Checkout develop - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: develop token: ${{ steps.app-token.outputs.token }} @@ -214,7 +214,7 @@ jobs: private-key: ${{ secrets.GITFLOW_APP_PRIVATE_KEY }} - name: Checkout develop - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: develop token: ${{ steps.app-token.outputs.token }} diff --git a/.github/workflows/external-contributors.yml b/.github/workflows/external-contributors.yml index 36c3a614a4bd..08e06e9602ce 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@v6 + - uses: actions/checkout@v7 - 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 d74a82a667e5..ecff5c4dff38 100644 --- a/.github/workflows/flaky-test-detector.yml +++ b/.github/workflows/flaky-test-detector.yml @@ -25,7 +25,7 @@ jobs: if: ${{ github.base_ref != 'master' && github.ref != 'refs/heads/master' }} steps: - name: Check out current branch - uses: actions/checkout@v6 + uses: actions/checkout@v7 - 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 97e394b401db..20f8b335fd0f 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@v6 + uses: actions/checkout@v7 - name: Generate GitHub App token id: app-token diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index adbed5768ce9..dff9415582d1 100644 --- a/.github/workflows/lighthouse.yml +++ b/.github/workflows/lighthouse.yml @@ -18,7 +18,7 @@ jobs: LIGHTHOUSE_UPLOAD_TOKEN: ${{ secrets.LIGHTHOUSE_UPLOAD_TOKEN }} VITE_E2E_TEST_DSN: 'https://username@domain/123' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0 with: version: 9.15.9 diff --git a/.github/workflows/pr-review-reminder.yml b/.github/workflows/pr-review-reminder.yml index 74cab9997d0a..457430fc957c 100644 --- a/.github/workflows/pr-review-reminder.yml +++ b/.github/workflows/pr-review-reminder.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Remind pending reviewers uses: actions/github-script@v9 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b88f4212c4e7..acf5f83329c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: with: client-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }} private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: token: ${{ steps.token.outputs.token }} fetch-depth: 0 diff --git a/.github/workflows/track-framework-updates.yml b/.github/workflows/track-framework-updates.yml index 8ffca023535c..0d31cfd84c7b 100644 --- a/.github/workflows/track-framework-updates.yml +++ b/.github/workflows/track-framework-updates.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: develop diff --git a/.github/workflows/triage-issue.yml b/.github/workflows/triage-issue.yml index 45a28ee04d60..c3f97eed78b1 100644 --- a/.github/workflows/triage-issue.yml +++ b/.github/workflows/triage-issue.yml @@ -48,7 +48,7 @@ jobs: echo "Processing issue #$ISSUE_NUM in CI mode" - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: develop