diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index 34f9f49..6d9f78a 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -41,7 +41,7 @@ jobs: private-key: ${{ secrets.BOT_PRIVATE_KEY }} - id: checkout name: Checkout ${{ github.head_ref }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ github.head_ref }} diff --git a/.github/workflows/auto-review.yml b/.github/workflows/auto-review.yml index 2456b7d..f245732 100644 --- a/.github/workflows/auto-review.yml +++ b/.github/workflows/auto-review.yml @@ -65,7 +65,7 @@ jobs: run: gh auth status - id: checkout name: Checkout ${{ github.head_ref }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ github.head_ref }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e923198..68e4159 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: uses: hmarr/debug-action@v3.0.0 - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ env.REF }} @@ -96,7 +96,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 persist-credentials: false @@ -124,7 +124,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ env.REF }} @@ -150,7 +150,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ env.REF }} @@ -176,7 +176,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ env.REF }} @@ -204,7 +204,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ env.REF }} @@ -245,7 +245,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ env.REF }} @@ -301,7 +301,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ env.REF }} @@ -344,7 +344,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 persist-credentials: false @@ -386,7 +386,7 @@ jobs: steps: - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: ref: ${{ env.REF }} - id: validate diff --git a/.github/workflows/infrastructure.yml b/.github/workflows/infrastructure.yml index 0895e07..d112d58 100644 --- a/.github/workflows/infrastructure.yml +++ b/.github/workflows/infrastructure.yml @@ -51,7 +51,7 @@ jobs: private-key: ${{ secrets.BOT_PRIVATE_KEY }} - id: checkout name: Checkout ${{ github.ref_name }}@${{ github.sha }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ github.sha }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9db784e..6bde724 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,7 +40,7 @@ jobs: uses: hmarr/debug-action@v3.0.0 - id: checkout name: Checkout ${{ github.ref_name }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ github.ref }} diff --git a/.github/workflows/release-chore.yml b/.github/workflows/release-chore.yml index 2f2d455..6a95678 100644 --- a/.github/workflows/release-chore.yml +++ b/.github/workflows/release-chore.yml @@ -52,7 +52,7 @@ jobs: exit 1 - id: checkout name: Checkout ${{ github.ref_name }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ github.ref }} @@ -108,7 +108,7 @@ jobs: private-key: ${{ secrets.BOT_PRIVATE_KEY }} - id: checkout name: Checkout ${{ github.ref_name }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: ref: ${{ github.ref }} token: ${{ steps.bot-token.outputs.token }} @@ -131,7 +131,7 @@ jobs: private-key: ${{ secrets.BOT_PRIVATE_KEY }} - id: checkout name: Checkout ${{ needs.preflight.outputs.branch }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 persist-credentials: false @@ -184,7 +184,7 @@ jobs: private-key: ${{ secrets.BOT_PRIVATE_KEY }} - id: checkout name: Checkout ${{ needs.preflight.outputs.branch }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: persist-credentials: false ref: ${{ needs.preflight.outputs.branch }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ad256d3..9283693 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,7 +58,7 @@ jobs: uses: hmarr/debug-action@v3.0.0 - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: ref: ${{ env.REF }} - id: version @@ -97,7 +97,7 @@ jobs: run: echo "GITHUB_TOKEN=${{ steps.bot-token.outputs.token }}" >>$GITHUB_ENV - id: checkout name: Checkout ${{ env.REF_NAME }} - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5.0.0 with: fetch-depth: 0 persist-credentials: true