From c3dc451be19bd11d40d592b908e1206d8964fae1 Mon Sep 17 00:00:00 2001 From: Jiaqi Gao Date: Thu, 5 Dec 2024 02:59:35 -0500 Subject: [PATCH] ci: install cargo-fuzz with stable toolchain The rustc version 1.77.0-nightly does not meet the requirement of `cargo-platform v0.1.9`. Use latest stable toolchain to install the `cargo-fuzz`. Signed-off-by: Jiaqi Gao --- .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 cad1769f..41079287 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -46,7 +46,7 @@ jobs: if: runner.os == 'Linux' - name: Install Cargo-Fuzz (Linux) - run: cargo install cargo-fuzz + run: cargo +stable install cargo-fuzz if: runner.os == 'Linux' - name: Preparation work