From 713a904ea1a96a4afa9a7f33db31f82f8bf43f0b Mon Sep 17 00:00:00 2001 From: Martijn Gribnau Date: Tue, 20 Aug 2024 21:30:40 +0200 Subject: [PATCH] Fix github workflow for `cargo msrv (find)` for latest stable cargo-msrv --- .github/workflows/msrv.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml index 33ac4bee..fa775bd5 100644 --- a/.github/workflows/msrv.yml +++ b/.github/workflows/msrv.yml @@ -28,7 +28,7 @@ jobs: run: cargo msrv --output-format json verify -- cargo check - name: run_cargo_msrv_on_verify_failure if: ${{ failure() }} - run: cargo find msrv --output-format json -- cargo check + run: cargo msrv --output-format json -- cargo check # The same as the 'msrv' job, except it takes the latest release, including beta releases # We don't use --all-features here!