From 7e3275ca5caf27b1340b2f18e636041df387908e Mon Sep 17 00:00:00 2001 From: lucasmerlin Date: Sun, 1 Dec 2024 18:57:41 +0100 Subject: [PATCH] Fix cargo machete (#5410) * [x] I have followed the instructions in the PR template cargo machete depends on cargo-platform which seems to bumped it's msrv. Installing via --locked should fix this for now. I think it's fine to do this manually instead of using the cargo action since it's so simple and the action we used basically did the same (without --locked) --- .github/workflows/cargo_machete.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cargo_machete.yml b/.github/workflows/cargo_machete.yml index dab6725553c..2b06dfdef36 100644 --- a/.github/workflows/cargo_machete.yml +++ b/.github/workflows/cargo_machete.yml @@ -9,4 +9,4 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Machete - uses: bnjbvr/cargo-machete@main + run: cargo install cargo-machete --locked && cargo machete