From 980f3ed8645c47937d30214718e34d777522995d Mon Sep 17 00:00:00 2001 From: Cromefire_ Date: Sun, 10 Dec 2023 16:57:19 +0100 Subject: [PATCH] Switched location for toolchain parameter --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb6005469874..f55e725ac1db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ concurrency: cancel-in-progress: true env: - RUST_TOOLCHAIN: 1.80.0 + RUST_TOOLCHAIN: 1.73.0 jobs: release-binary: @@ -58,8 +58,9 @@ jobs: submodules: recursive - name: Install Rust - uses: dtolnay/rust-toolchain@${{ env.RUST_TOOLCHAIN }} + uses: dtolnay/rust-toolchain@master with: + toolchain: ${{ env.RUST_TOOLCHAIN }} targets: ${{ matrix.target }} components: clippy