From c2f3c1fa11e341a660a4256d8157c3adbcf6147e Mon Sep 17 00:00:00 2001 From: Einherjar Date: Sat, 9 Sep 2023 10:16:36 -0400 Subject: [PATCH] fix(CI): rust-toolchain stable - sets `dtolnay/rust-toolchain` to `stable` - delegates the `toolchain` to `1.48.0` as GitHub action input This will make the rust-toolchain to always run in the `stable` branch with the toolchain version being handled in the action. It will appease dependabot and we can change at any time the `toolchain` action input. --- .github/workflows/rust.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4b1fc15c..3e73eb4a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -74,7 +74,9 @@ jobs: - name: Checkout Crate uses: actions/checkout@v3 - name: Checkout Toolchain - uses: dtolnay/rust-toolchain@1.48.0 + uses: dtolnay/rust-toolchain@stable + with: + toolchain: "1.48.0" - name: Running test script env: DO_FEATURE_MATRIX: true