Skip to content

Commit

Permalink
Omit cache true for setup-go@v4
Browse files Browse the repository at this point in the history
Starting from actions/setup-go v4, the cache option is enabled by
default, so we no longer need to explicitly specify cache: true.
  • Loading branch information
minamijoyo committed Oct 17, 2023
1 parent 88c2974 commit afd8035
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version-file: '.go-version'
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
uses: actions/setup-go@v4
with:
go-version-file: '.go-version'
cache: true
- name: Generate github app token
id: generate_github_app_token
uses: tibdex/github-app-token@f717b5ecd4534d3c4df4ce9b5c1c2214f0f7cd06 # v1.6.0
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version-file: '.go-version'
cache: true
- name: test
run: make test
testacc:
Expand Down

0 comments on commit afd8035

Please sign in to comment.