Merge rust-bitcoin/rust-bitcoin#2060: fix(CI): `rust-toolchain` stable
c2f3c1fa11
fix(CI): rust-toolchain stable (Einherjar) Pull request description: - 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. Discussed in https://github.com/rust-bitcoin/rust-bitcoin/pull/2055 ACKs for top commit: apoelstra: ACKc2f3c1fa11
tcharding: ACKc2f3c1fa11
Tree-SHA512: 83637bcd73aed1210ff67376c9f99047293dd22c2b863dd5f39ba5efb65081ff2d0cce4e375abb79b33918101a12f1780c3bde78b76a29331733f5cf515d1ac7
This commit is contained in:
commit
26c27d9071
|
@ -74,7 +74,9 @@ jobs:
|
|||
- name: Checkout Crate
|
||||
uses: actions/checkout@v4
|
||||
- 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