Skip to content

Commit 27440e8

Browse files
authored
Merge pull request #9535 from guggero/remove-caching
GitHub: remove duplicate caching
2 parents 553899b + dc64ea9 commit 27440e8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/setup-go/action.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ runs:
2222
uses: actions/setup-go@v5
2323
with:
2424
go-version: '${{ inputs.go-version }}'
25+
cache: 'false'
2526

2627
- name: go cache
2728
if: ${{ inputs.use-build-cache == 'yes' }}
@@ -44,7 +45,7 @@ runs:
4445
4546
- name: go module cache
4647
if: ${{ inputs.use-build-cache == 'no' }}
47-
uses: actions/cache@v3
48+
uses: actions/cache@v4
4849
with:
4950
# Just the module download cache.
5051
path: |

0 commit comments

Comments
 (0)