From e7a15889344cb3ecf5f75c7303bdcb496bca2f50 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 10:09:16 +0000 Subject: [PATCH] Bump actions/checkout from 3.6.0 to 4.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/f43a0e5ff2bd294095638e18286ca9a3d1956744...8ade135a41bc03ea155e62e844d188df1ea18608) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/code_coverage_comment.yml | 2 +- .github/workflows/release_auto.yml | 4 ++-- .github/workflows/release_pr_snapshot.yml | 2 +- .github/workflows/remove_snapshot_branch.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 022cf11f..e88d639e 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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - 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 be4fe0d7..f6c5bfcb 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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - name: Download cobertura.xml file uses: dawidd6/action-download-artifact@246dbf436b23d7c49e21a7ab8204ca9ecd1fe615 # v2.27.0 diff --git a/.github/workflows/release_auto.yml b/.github/workflows/release_auto.yml index 3d5b4969..2f4e3861 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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 with: fetch-depth: 0 ref: master @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 with: fetch-depth: 0 ref: master diff --git a/.github/workflows/release_pr_snapshot.yml b/.github/workflows/release_pr_snapshot.yml index 27505c3a..e561045f 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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - name: Checkout PR env: diff --git a/.github/workflows/remove_snapshot_branch.yml b/.github/workflows/remove_snapshot_branch.yml index dc9e4179..6310fa8e 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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - name: Remove snapshot branch run: git push origin -d snapshots/${{ github.event.number }} || true