From 502632591b8b6358ee171f1fcd5fe1a982ca34ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 08:12:56 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.6 to 4.1.7 (#611) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7. - [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/a5ac7e51b41094c92402da3b24376905380afc29...692973e3d937129bcbf40652eb9f2f61becf3332) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alejandro Hernández --- .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 f67311b6..4fe0c699 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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: diff --git a/.github/workflows/code_coverage_comment.yml b/.github/workflows/code_coverage_comment.yml index 602e2342..6a005d4c 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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Download cobertura.xml file uses: dawidd6/action-download-artifact@09f2f74827fd3a8607589e5ad7f9398816f540fe # v3.1.4 diff --git a/.github/workflows/release_auto.yml b/.github/workflows/release_auto.yml index 6991e523..8a09f6ec 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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 ref: master @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 ref: master diff --git a/.github/workflows/release_pr_snapshot.yml b/.github/workflows/release_pr_snapshot.yml index 5a7824a2..ecd97723 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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Checkout PR env: diff --git a/.github/workflows/remove_snapshot_branch.yml b/.github/workflows/remove_snapshot_branch.yml index be29b376..7ffa2ab1 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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Remove snapshot branch run: git push origin -d snapshots/${{ github.event.number }} || true