We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe09085 commit cc87000Copy full SHA for cc87000
.github/actions/setup-go/action.yaml
@@ -36,11 +36,10 @@ runs:
36
with:
37
path: |
38
${{ steps.get_cache_dirs.outputs.go-mod-cache }}}
39
- key: gomodcache-${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/go.sum') }}
+ key: gomodcache-${{ runner.os }}-${{ hashFiles('**/go.sum') }}-${{ github.job }}
40
restore-keys: |
41
- gomodcache-${{ runner.os }}-${{ github.job }}-
+ gomodcache-${{ runner.os }}-${{ hashFiles('**/go.sum') }}-
42
gomodcache-${{ runner.os }}-
43
- gomodcache-
44
45
- name: Cache $GOCACHE
46
uses: buildjet/cache@v3
@@ -53,7 +52,6 @@ runs:
53
52
54
gocache-${{ runner.os }}-${{ github.job }}-
55
gocache-${{ runner.os }}-
56
- gocache-
57
58
- name: Install gotestsum
59
shell: bash
0 commit comments