diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 808fad64696f..a2e54206980a 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@v4 + - uses: actions/checkout@v5 with: token: ${{ steps.token.outputs.token }} fetch-depth: 0 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c24874cb3ff9..d6b5c3952b72 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@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -322,7 +322,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} @@ -345,7 +345,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -367,7 +367,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@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -402,13 +402,13 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -449,7 +449,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -474,7 +474,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -506,12 +506,12 @@ jobs: node: [18, 20, 22, 24] steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -600,7 +600,7 @@ jobs: steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -664,7 +664,7 @@ jobs: steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -712,7 +712,7 @@ jobs: timeout-minutes: 5 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -750,7 +750,7 @@ jobs: typescript: '3.8' steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -786,7 +786,7 @@ jobs: timeout-minutes: 15 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -814,7 +814,7 @@ jobs: node: [18, 20, 22, 24] steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -861,12 +861,12 @@ jobs: matrix-optional: ${{ steps.matrix-optional.outputs.matrix }} steps: - name: Check out base commit (${{ github.event.pull_request.base.sha }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 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@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -931,7 +931,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@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - uses: pnpm/action-setup@v4 @@ -1061,7 +1061,7 @@ jobs: steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - uses: pnpm/action-setup@v4 diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 2b8f46f0c352..b1c5f619de19 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@v4 + uses: actions/checkout@v5 with: ref: ${{ env.HEAD_COMMIT }} - name: Set up Node @@ -120,7 +120,7 @@ jobs: steps: - name: Check out current commit - uses: actions/checkout@v4 + uses: actions/checkout@v5 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 591d9292e0c0..2c9bba513605 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@v4 + uses: actions/checkout@v5 - name: Cleanup run: | diff --git a/.github/workflows/clear-cache.yml b/.github/workflows/clear-cache.yml index 20d99f72b66e..97aeb53365e7 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@v4 + - uses: actions/checkout@v5 - name: Set up Node uses: actions/setup-node@v4 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index daeb79c8fa30..8c042c5aa44f 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@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/external-contributors.yml b/.github/workflows/external-contributors.yml index 782d95d60269..1735a89a5446 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@v4 + - uses: actions/checkout@v5 - name: Set up Node uses: actions/setup-node@v4 with: diff --git a/.github/workflows/flaky-test-detector.yml b/.github/workflows/flaky-test-detector.yml index 076fbf7dd02d..5103f1f43a2d 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@v4 + uses: actions/checkout@v5 - name: Set up Node uses: actions/setup-node@v4 with: diff --git a/.github/workflows/gitflow-sync-develop.yml b/.github/workflows/gitflow-sync-develop.yml index ed2755bd9440..96c69d952264 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@v4 + uses: actions/checkout@v5 # 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 2edb9fb09405..494061d98e5f 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@v4 + - uses: actions/checkout@v5 with: token: ${{ steps.token.outputs.token }} fetch-depth: 0