From c73a8618cd20b083d1a641de8f94eb0960af0675 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 01:57:40 +0000 Subject: [PATCH] workflows: 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/go.yml | 12 ++++++------ .github/workflows/golangci-lint-latest.yml | 2 +- .github/workflows/golangci-lint.yml | 2 +- .github/workflows/releases.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index be5db32..2dfaaae 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,7 +11,7 @@ jobs: go-version: '1.15' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -25,7 +25,7 @@ jobs: go-version: '1.16' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -39,7 +39,7 @@ jobs: go-version: '1.17' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -53,7 +53,7 @@ jobs: go-version: '1.18' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -67,7 +67,7 @@ jobs: go-version: '1.19' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -81,7 +81,7 @@ jobs: go-version: '1.20' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... -coverprofile=coverage.out -covermode=atomic diff --git a/.github/workflows/golangci-lint-latest.yml b/.github/workflows/golangci-lint-latest.yml index 6e0bb81..2966ade 100644 --- a/.github/workflows/golangci-lint-latest.yml +++ b/.github/workflows/golangci-lint-latest.yml @@ -15,7 +15,7 @@ jobs: check-latest: true id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index aca203d..f15536a 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -12,7 +12,7 @@ jobs: check-latest: true id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 1812300..d162ebc 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set env RELEASE_VERSION run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF} | cut -d'/' -f3)" >> $GITHUB_ENV - name: Create Release