Skip to content

Commit 2bbf63c

Browse files
committed
Use stable toolchain for fuzzing
1 parent 9b6b50a commit 2bbf63c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
key: cache-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
2727
- uses: actions-rs/toolchain@v1
2828
with:
29-
toolchain: nightly
29+
toolchain: stable
3030
override: true
3131
profile: minimal
3232
- run: cargo install honggfuzz
3333
if: steps.cache-fuzz.outputs.cache-hit != 'true'
3434
- run: echo "HFUZZ_RUN_ARGS=\"--run_time 30 --exit_upon_crash -v -f hfuzz_input/${{ matrix.fuzz_target }}/input\"" >> $GITHUB_ENV
3535
- name: fuzz
36-
run: cd fuzz && cargo +nightly hfuzz run ${{ matrix.fuzz_target }}
36+
run: cd fuzz && cargo hfuzz run ${{ matrix.fuzz_target }}
3737
- run: echo "${{ matrix.fuzz_target }}.rs" >executed_${{ matrix.fuzz_target }}
3838
- uses: actions/upload-artifact@v2
3939
with:

0 commit comments

Comments
 (0)