diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e88d639e..13736b1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 with: diff --git a/.github/workflows/code_coverage_comment.yml b/.github/workflows/code_coverage_comment.yml index 42147f23..4ac062d8 100644 --- a/.github/workflows/code_coverage_comment.yml +++ b/.github/workflows/code_coverage_comment.yml @@ -12,7 +12,7 @@ jobs: if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' && github.event.workflow_run.conclusion == 'success' }} steps: - name: Checkout project - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Download cobertura.xml file uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e # v2.28.0 diff --git a/.github/workflows/release_auto.yml b/.github/workflows/release_auto.yml index 2f4e3861..bd8a577d 100644 --- a/.github/workflows/release_auto.yml +++ b/.github/workflows/release_auto.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: fetch-depth: 0 ref: master @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: fetch-depth: 0 ref: master diff --git a/.github/workflows/release_pr_snapshot.yml b/.github/workflows/release_pr_snapshot.yml index eea4b932..49723265 100644 --- a/.github/workflows/release_pr_snapshot.yml +++ b/.github/workflows/release_pr_snapshot.yml @@ -25,7 +25,7 @@ jobs: echo "PR_NUMBER=$pr_number" >> $GITHUB_OUTPUT - name: Checkout project - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Checkout PR env: diff --git a/.github/workflows/remove_snapshot_branch.yml b/.github/workflows/remove_snapshot_branch.yml index 6310fa8e..a5d93d4a 100644 --- a/.github/workflows/remove_snapshot_branch.yml +++ b/.github/workflows/remove_snapshot_branch.yml @@ -11,7 +11,7 @@ jobs: if: github.event.sender.login != 'dependabot[bot]' steps: - name: Checkout project - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Remove snapshot branch run: git push origin -d snapshots/${{ github.event.number }} || true