Skip to content

Commit 9676000

Browse files
committed
fixup! Reduce thrashing
1 parent 2c7208a commit 9676000

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ runs:
2424
go-version: ${{ inputs.version }}
2525

2626
- name: Get cache dirs
27-
id: get_cache_dirs
2827
shell: bash
2928
run: |
30-
echo "go-mod-cache=$(go env GOMODCACHE)" >> $GITHUB_ENV
31-
echo "go-cache=$(go env GOCACHE)" >> $GITHUB_ENV
29+
set -x
30+
echo "GOMODCACHE=$(go env GOMODCACHE)" >> $GITHUB_ENV
31+
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
3232
3333
# We split up GOMODCACHE from GOCACHE because the latter must be invalidated
3434
# on code change, but the former can be kept.

0 commit comments

Comments
 (0)