From 1ea42daa0777cbb7474c2917411228fc71d7406a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 05:19:39 +0000 Subject: [PATCH] Bump actions/checkout from 2.3.5 to 4.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 4.0.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/v2.3.5...v4.0.0) --- 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 | 6 +++--- .github/workflows/reviewdog.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 23623c5..99ba9eb 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v2.3.5 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 # need to checkout "all commits" for certain features to work (e.g., get all changed files) @@ -108,7 +108,7 @@ jobs: with: python-version: 3.8 - name: Checkout Code - uses: actions/checkout@v2.3.5 + uses: actions/checkout@v4.0.0 - name: Load CI Environment from .ci_env id: load_ci_env @@ -141,7 +141,7 @@ jobs: GIT_SHA: ${{ needs.prepare_ci_run.outputs.GIT_SHA }} steps: - name: Checkout Code - uses: actions/checkout@v2.3.5 + uses: actions/checkout@v4.0.0 - name: Load CI Environment from .ci_env id: load_ci_env diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index febbfca..5a1f233 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -11,7 +11,7 @@ jobs: go-version: 1.16 id: go - name: Check out code. - uses: actions/checkout@v2.3.5 + uses: actions/checkout@v4.0.0 - name: Install linters run: '( mkdir linters && cd linters && go get golang.org/x/lint/golint )' - uses: reviewdog/action-setup@v1.0.3