Skip to content

Commit ae33025

Browse files
committed
fuzz: Bump rustc version
CI is complaining: package `regex v1.10.0` cannot be built because it requires rustc 1.65 or newer, while the currently active rustc version is 1.64.0 Bump rustc to v1.65 in the `generate_files.sh` script and run it.
1 parent d47f0f4 commit ae33025

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ compile_descriptor,
3939
key: cache-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
4040
- uses: actions-rs/toolchain@v1
4141
with:
42-
toolchain: 1.64
42+
toolchain: '1.65'
4343
override: true
4444
profile: minimal
4545
- name: fuzz

fuzz/generate-files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ $(for name in $(listTargetNames); do echo "$name,"; done)
7272
key: cache-\${{ matrix.target }}-\${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
7373
- uses: actions-rs/toolchain@v1
7474
with:
75-
toolchain: 1.64
75+
toolchain: '1.65'
7676
override: true
7777
profile: minimal
7878
- name: fuzz

0 commit comments

Comments
 (0)