Skip to content

Commit bd8f2e6

Browse files
committed
fixup
Signed-off-by: Frederic BIDON <[email protected]>
1 parent 77dcc85 commit bd8f2e6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/go-test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)