File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -100,13 +100,14 @@ jobs:
100100 -
101101 uses : actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
102102 with :
103- go-version : ' ${{ matrix.go }} '
103+ go-version : stable
104104 check-latest : true
105105 cache : true
106106 -
107107 name : Locate go fuzz cache
108108 run : |
109- echo "$(go env GOCACHE)/fuzz" >> "${GITHUB_ENV}"
109+ GOCACHE="$(go env GOCACHE)"
110+ echo "${GOCACHE}/fuzz" >> "${GITHUB_ENV}"
110111 -
111112 uses : actions/cache@v3
112113 with :
@@ -116,8 +117,6 @@ jobs:
116117 -
117118 name : Manage fuzz corpus cache size
118119 run : |
119- mkdir -p "${{ env.CORPUS_DIR}}"
120-
121120 CURRENT_SIZE=$(du -sm "${CORPUS_DIR}"|cut -f1)
122121 echo "corpus size: ${CURRENT_SIZE}MB"
123122 if [[ "${CURRENT_SIZE}" -gt "${CORPUS_MAX_SIZE}" ]] ; then
You can’t perform that action at this time.
0 commit comments