From 6ca4a6cdae431d06f1a18a844037c34d0bbb0fb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 00:27:53 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yaml | 2 +- .github/workflows/release-binary.yml | 2 +- .github/workflows/test.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 5146c9f..9549243 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -12,7 +12,7 @@ jobs: go-version: 1.19.x - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Lint uses: golangci/golangci-lint-action@v3 diff --git a/.github/workflows/release-binary.yml b/.github/workflows/release-binary.yml index 81c0715..1b7de79 100644 --- a/.github/workflows/release-binary.yml +++ b/.github/workflows/release-binary.yml @@ -20,7 +20,7 @@ jobs: go-version: 1.19 - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: ${{ env.working-directory }} fetch-depth: 0 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9dca53b..60c0138 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,7 +12,7 @@ jobs: go-version: 1.19.x - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Go test run: go test -shuffle=on -coverprofile coverage.out -timeout 5m ./... @@ -26,7 +26,7 @@ jobs: go-version: 1.19.x - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Go race test run: go test -race -shuffle=on -timeout 5m ./...