Skip to content

Commit 9831f9b

Browse files
committed
Update fuzz CI job to use our MSRV rather than 1.58
1 parent a0b5e30 commit 9831f9b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
fuzz:
177177
runs-on: ubuntu-latest
178178
env:
179-
TOOLCHAIN: 1.58
179+
TOOLCHAIN: 1.63
180180
steps:
181181
- name: Checkout source code
182182
uses: actions/checkout@v3
@@ -188,6 +188,10 @@ jobs:
188188
run: |
189189
sudo apt-get update
190190
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
191195
- name: Sanity check fuzz targets on Rust ${{ env.TOOLCHAIN }}
192196
run: cd fuzz && RUSTFLAGS="--cfg=fuzzing" cargo test --verbose --color always
193197
- name: Run fuzzers

0 commit comments

Comments
 (0)