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 7ab10d3 commit a073e28Copy full SHA for a073e28
.github/workflows/build.yml
@@ -176,7 +176,7 @@ jobs:
176
fuzz:
177
runs-on: ubuntu-latest
178
env:
179
- TOOLCHAIN: 1.58
+ TOOLCHAIN: 1.63
180
steps:
181
- name: Checkout source code
182
uses: actions/checkout@v3
@@ -188,6 +188,8 @@ jobs:
188
run: |
189
sudo apt-get update
190
sudo apt-get -y install build-essential binutils-dev libunwind-dev
191
+ - name: Pin the regex dependency
192
+ run: cd fuzz && cargo update -p regex --precise "1.9.6" --verbose
193
- name: Sanity check fuzz targets on Rust ${{ env.TOOLCHAIN }}
194
run: cd fuzz && RUSTFLAGS="--cfg=fuzzing" cargo test --verbose --color always
195
- name: Run fuzzers
0 commit comments