diff --git a/.github/workflows/ci-gha-workflows.yaml b/.github/workflows/ci-gha-workflows.yaml index 7744d5aae..da7eb132e 100644 --- a/.github/workflows/ci-gha-workflows.yaml +++ b/.github/workflows/ci-gha-workflows.yaml @@ -15,7 +15,7 @@ jobs: permissions: security-events: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: persist-credentials: false diff --git a/.github/workflows/ci-nodejs.yml b/.github/workflows/ci-nodejs.yml index 7f9833741..f43938fe8 100644 --- a/.github/workflows/ci-nodejs.yml +++ b/.github/workflows/ci-nodejs.yml @@ -65,7 +65,7 @@ jobs: echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV fi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }} with: persist-credentials: false @@ -175,7 +175,7 @@ jobs: echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV fi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }} with: persist-credentials: false @@ -278,7 +278,7 @@ jobs: echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV fi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }} with: persist-credentials: false @@ -435,7 +435,7 @@ jobs: echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV fi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }} with: persist-credentials: false @@ -495,7 +495,7 @@ jobs: echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV fi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }} with: persist-credentials: false @@ -625,7 +625,7 @@ jobs: timeout-minutes: 5 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: false @@ -673,7 +673,7 @@ jobs: echo 'LINT_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV fi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ env.LINT_PREVIOUSLY_PASSED != 'true' }} with: persist-credentials: false @@ -726,7 +726,7 @@ jobs: echo 'TYPE_CHECK_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV fi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ env.TYPE_CHECK_PREVIOUSLY_PASSED != 'true' }} with: persist-credentials: false @@ -781,7 +781,7 @@ jobs: echo 'VALIDATE_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV fi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ env.VALIDATE_PREVIOUSLY_PASSED != 'true' }} with: persist-credentials: false @@ -849,7 +849,7 @@ jobs: timeout-minutes: 10 if: ${{ needs.environment.outputs.name == 'production' }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: persist-credentials: false diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 00abc129e..e980c744e 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -24,7 +24,7 @@ jobs: dependency-review: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: persist-credentials: false diff --git a/.github/workflows/publish-demo.yaml b/.github/workflows/publish-demo.yaml index d64706a32..4c573d2d3 100644 --- a/.github/workflows/publish-demo.yaml +++ b/.github/workflows/publish-demo.yaml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: persist-credentials: false - uses: actions/setup-node@v6 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 89719b7c4..b8832bf95 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,7 +23,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: true - name: Setup Node.js