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 e26f8b4 commit 976f4bbCopy full SHA for 976f4bb
.github/workflows/cifuzz.yaml
@@ -21,12 +21,15 @@ jobs:
21
uses: actions/setup-go@v3
22
with:
23
go-version: 1.18.x
24
+ - id: go-env
25
+ run: |
26
+ echo "::set-output name=go-mod-cache::$(go env GOMODCACHE)"
27
- name: Restore Go cache
28
uses: actions/cache@v3
29
- path: /home/runner/work/_temp/_github_home/go/pkg/mod
30
+ path: ${{ steps.go-env.outputs.go-mod-cache }}
31
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
32
restore-keys: |
- ${{ runner.os }}-go-
33
+ ${{ runner.os }}-go
34
- name: Smoke test Fuzzers
35
run: make fuzz-smoketest
0 commit comments