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.
This commit is contained in:
Einherjar 2023-09-09 10:16:36 -04:00
parent b2b562d44b
commit c2f3c1fa11
No known key found for this signature in database
GPG Key ID: E7ED7E35F072CA83
1 changed files with 3 additions and 1 deletions

View File

@ -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