From 3e6021bbc6ac8a022365e19d26da6600204c9741 Mon Sep 17 00:00:00 2001 From: Einherjar Date: Sat, 7 Oct 2023 14:30:29 -0300 Subject: [PATCH] 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. --- .github/workflows/fuzz.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 81290590..f867c67f 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -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