From 9f8ed87be1f0e6f7a7f840c4756a1698aa8d858a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 04:23:23 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cover.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cover.yml b/.github/workflows/cover.yml index ec05fa9..8416094 100644 --- a/.github/workflows/cover.yml +++ b/.github/workflows/cover.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-go@v1 with: go-version: ${{ matrix.go }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: make build test: needs: build @@ -32,7 +32,7 @@ jobs: - uses: actions/setup-go@v1 with: go-version: ${{ matrix.go }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: make test - name: Send coverage env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09b3823..0252a56 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Go