File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ jobs:
176
176
fuzz :
177
177
runs-on : ubuntu-latest
178
178
env :
179
- TOOLCHAIN : 1.58
179
+ TOOLCHAIN : 1.63
180
180
steps :
181
181
- name : Checkout source code
182
182
uses : actions/checkout@v3
@@ -188,6 +188,10 @@ jobs:
188
188
run : |
189
189
sudo apt-get update
190
190
sudo apt-get -y install build-essential binutils-dev libunwind-dev
191
+ - name : Pin the regex dependency
192
+ run : |
193
+ cd fuzz && cargo update -p regex --precise "1.9.6" --verbose && cd ..
194
+ cd lightning-invoice/fuzz && cargo update -p regex --precise "1.9.6" --verbose
191
195
- name : Sanity check fuzz targets on Rust ${{ env.TOOLCHAIN }}
192
196
run : cd fuzz && RUSTFLAGS="--cfg=fuzzing" cargo test --verbose --color always
193
197
- name : Run fuzzers
You can’t perform that action at this time.
0 commit comments