Skip to content

Commit

Permalink
github/workflows: disable setup-go@v4 cache which is enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
leonklingele committed Sep 8, 2023
1 parent 57470b4 commit 2e6d9ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/benchmark.yml
Expand Up @@ -24,6 +24,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
cache: false # setup-go v4 caches by default
# NOTE: Keep this in sync with the version from go.mod
go-version: "1.20.x"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linter.yml
Expand Up @@ -19,6 +19,7 @@ jobs:

- uses: actions/setup-go@v4
with:
cache: false # setup-go v4 caches by default
# NOTE: Keep this in sync with the version from go.mod
go-version: "1.20.x"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Expand Up @@ -29,6 +29,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
cache: false # setup-go v4 caches by default
go-version: ${{ matrix.go-version }}

- name: Run Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vulncheck.yml
Expand Up @@ -27,9 +27,9 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
cache: false # setup-go v4 caches by default
go-version: "stable"
check-latest: true
cache: false

- name: Install Govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
Expand Down

0 comments on commit 2e6d9ef

Please sign in to comment.