From 41920c30460f067ddf9bf205a8782e4ff50a168b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 02:56:23 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.7 to 4.2.0 (#643) 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.7 to 4.2.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/692973e3d937129bcbf40652eb9f2f61becf3332...d632683dd7b4114ad314bca15554477dd762a938) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: TATSUNO “Taz” Yasuhiro --- .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 8bf65660..9f1aec16 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 with: diff --git a/.github/workflows/code_coverage_comment.yml b/.github/workflows/code_coverage_comment.yml index 4b6dfa1b..08752873 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Download cobertura.xml file uses: dawidd6/action-download-artifact@bf251b5aa9c2f7eeb574a96ee720e24f801b7c11 # v6 diff --git a/.github/workflows/release_auto.yml b/.github/workflows/release_auto.yml index 02e26607..dc0cd4a6 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: fetch-depth: 0 ref: master @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: fetch-depth: 0 ref: master diff --git a/.github/workflows/release_pr_snapshot.yml b/.github/workflows/release_pr_snapshot.yml index 0fc10ddc..fb23b2ed 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Checkout PR env: diff --git a/.github/workflows/remove_snapshot_branch.yml b/.github/workflows/remove_snapshot_branch.yml index 7ffa2ab1..df8371bb 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Remove snapshot branch run: git push origin -d snapshots/${{ github.event.number }} || true