From ca4d7755a0e08f01cd415ca65aa24a9f1d1342b0 Mon Sep 17 00:00:00 2001 From: Ludvig Liljenberg Date: Tue, 4 Mar 2025 13:05:01 -0800 Subject: [PATCH] Fix CI rust toolchain (#323) Signed-off-by: Ludvig Liljenberg --- .github/workflows/dep_rust.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dep_rust.yml b/.github/workflows/dep_rust.yml index c25e17a79..24450fe78 100644 --- a/.github/workflows/dep_rust.yml +++ b/.github/workflows/dep_rust.yml @@ -48,9 +48,15 @@ jobs: steps: - uses: actions/checkout@v4 + # For rust-fmt + - name: Set up nightly rust + uses: dtolnay/rust-toolchain@nightly + with: + components: rustfmt + - uses: hyperlight-dev/ci-setup-workflow@v1.2.0 with: - rust-toolchain: "nightly" + rust-toolchain: "1.81.0" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}