ci: fuzz test YAML toolchain future-proof

To avoid YAML automatic parsing of inputs as floats,
e.g. [`1.60` being parsed as `1.6`](https://github.com/rust-bitcoin/rust-bitcoin/pull/2109#issuecomment-1751392327),
it is best to future-proof the `toolchain` input in CI fuzz testing
as a string.
This commit is contained in:
Einherjar 2023-10-07 14:30:29 -03:00
parent 342a35b4c4
commit 3e6021bbc6
No known key found for this signature in database
GPG Key ID: E7ED7E35F072CA83
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ hashes_sha1,
key: cache-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.65.0
toolchain: "1.65.0"
override: true
profile: minimal
- name: fuzz