Skip to content

Commit

Permalink
ci(github-actions): bump the dependencies group with 4 updates (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
ginokent authored Jun 2, 2024
2 parents fb7193d + 6842a0c commit 4e3dfa6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
================================================================
DEBUG_DOC
- name: actions/cache for versenv
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/versenv
Expand All @@ -87,7 +87,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 @@ -99,7 +99,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 @@ -119,7 +119,7 @@ jobs:
set -Eeu -o pipefail -x
direnv allow .
direnv exec . bash -Eeux -o pipefail -c 'echo "${GOPRIVATE:-}${GOPRIVATE+,}" | while read -d , -r LINE; do echo "set git config: ${LINE}"; git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@${LINE}".insteadOf "https://${LINE}"; done'
- 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
6 changes: 3 additions & 3 deletions .github/workflows/go-mod-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
================================================================
DEBUG_DOC
- 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 @@ -91,7 +91,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 Down
10 changes: 5 additions & 5 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
================================================================
DEBUG_DOC
- name: actions/cache for versenv
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/versenv
Expand All @@ -87,7 +87,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 @@ -99,7 +99,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 @@ -113,7 +113,7 @@ jobs:
- name: Set up Buildx for docker build cache
uses: docker/setup-buildx-action@v3
- name: Use docker build cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.DOCKER_BUILD_CACHE_FROM }}
key: docker-build-buildx-${{ github.sha }}
Expand All @@ -132,7 +132,7 @@ jobs:
direnv allow .
direnv exec . bash -Eeux -o pipefail -c 'echo "${GOPRIVATE:-}${GOPRIVATE+,}" | while read -d , -r LINE; do echo "set git config: ${LINE}"; git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@${LINE}".insteadOf "https://${LINE}"; done'
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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-vuln.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
================================================================
DEBUG_DOC
- name: actions/cache for versenv
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/versenv
Expand All @@ -86,7 +86,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 @@ -98,7 +98,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 Down

0 comments on commit 4e3dfa6

Please sign in to comment.