Skip to content

Commit e5ae942

Browse files
committed
Lock rbmt dependencies instead of using a different toolchain
1 parent 433e8ca commit e5ae942

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/actions/prepare/action.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,12 @@ runs:
2323
fi
2424
echo "version=$TOOLCHAIN" >> $GITHUB_OUTPUT
2525
26-
- name: "Setup stable toolchain for RBMT"
27-
uses: actions-rust-lang/setup-rust-toolchain@v1
28-
with:
29-
toolchain: stable
30-
31-
- name: "Install RBMT"
32-
shell: bash
33-
run: cargo install --git https://github.com/rust-bitcoin/rust-bitcoin-maintainer-tools.git --rev "$(cat rbmt-version)" cargo-rbmt
34-
3526
- name: "Setup requested toolchain"
3627
uses: actions-rust-lang/setup-rust-toolchain@v1
3728
with:
3829
toolchain: ${{ steps.toolchain.outputs.version }}
3930
components: ${{ inputs.components }}
31+
32+
- name: "Install RBMT"
33+
shell: bash
34+
run: cargo install --git https://github.com/rust-bitcoin/rust-bitcoin-maintainer-tools.git --rev "$(cat rbmt-version)" cargo-rbmt --locked

0 commit comments

Comments
 (0)