Skip to content

Commit

Permalink
ci(github-actions): bump the dependencies group with 4 updates (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
ginokent authored May 10, 2024
2 parents 77a74f9 + 958fc98 commit d3ca484
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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

0 comments on commit d3ca484

Please sign in to comment.