From 958fc9847e8f447ece9847c27114686b3da21032 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 May 2024 00:55:54 +0000 Subject: [PATCH] ci(github-actions): bump the dependencies group with 4 updates Bumps the dependencies group with 4 updates: [actions/cache](https://github.com/actions/cache), [actions/setup-go](https://github.com/actions/setup-go), [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) Updates `actions/setup-go` from 4 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v4...v5) Updates `golangci/golangci-lint-action` from 3.7.0 to 6.0.1 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.7.0...v6.0.1) Updates `codecov/codecov-action` from 3 to 4 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/go-lint.yml | 8 ++++---- .github/workflows/go-test.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index d10ab57..2f78cbb 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -58,7 +58,7 @@ jobs: DEBUG_DOC shell: bash - name: actions/cache for versenv - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/versenv @@ -79,7 +79,7 @@ jobs: # Setup versenv direnv allow ${{ env.WORKDIR }} make versenv - - uses: actions/setup-go@v4 # ref. https://github.com/actions/setup-go#usage + - uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage id: setup-go with: cache: false @@ -90,7 +90,7 @@ jobs: echo "GOVERSION=$(go version | cut -d' ' -f3)" >> "$GITHUB_OUTPUT" echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT" - name: actions/cache for go - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/go/pkg/mod @@ -108,7 +108,7 @@ jobs: run: | direnv exec . go mod tidy git diff --exit-code go.mod go.sum - - uses: golangci/golangci-lint-action@v3.7.0 # ref. https://github.com/golangci/golangci-lint-action#how-to-use + - uses: golangci/golangci-lint-action@v6.0.1 # ref. https://github.com/golangci/golangci-lint-action#how-to-use with: working-directory: ${{ env.WORKDIR }} args: --timeout=600s diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index db050df..cffebc1 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -58,7 +58,7 @@ jobs: DEBUG_DOC shell: bash - name: actions/cache for versenv - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/versenv @@ -79,7 +79,7 @@ jobs: # Setup versenv direnv allow ${{ env.WORKDIR }} make versenv - - uses: actions/setup-go@v4 # ref. https://github.com/actions/setup-go#usage + - uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage id: setup-go with: cache: false @@ -90,7 +90,7 @@ jobs: echo "GOVERSION=$(go version | cut -d' ' -f3)" >> "$GITHUB_OUTPUT" echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT" - name: actions/cache for go - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/go/pkg/mod @@ -106,7 +106,7 @@ jobs: working-directory: ${{ env.WORKDIR }} run: | direnv exec . make test - - uses: codecov/codecov-action@v3 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action + - uses: codecov/codecov-action@v4 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action with: token: ${{ secrets.CODECOV_TOKEN }} files: ${{ env.WORKDIR }}/coverage.txt