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:
parent
b2b562d44b
commit
c2f3c1fa11
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue