diff --git a/.github/workflows/update_msrv.yaml b/.github/workflows/update_msrv.yaml index d5da9c0..b18a7e5 100644 --- a/.github/workflows/update_msrv.yaml +++ b/.github/workflows/update_msrv.yaml @@ -32,7 +32,7 @@ jobs: current_msrv=$(cargo msrv show --output-format minimal); echo "current msrv: $current_msrv"; echo "current=$current_msrv" >> "$GITHUB_OUTPUT"; - new_msrv=$(cargo msrv show --output-format minimal --min $current_msrv); + new_msrv=$(cargo msrv find --min $current_msrv --output-format minimal); echo "new msrv: $new_msrv"; echo "new=$new_msrv" >> "$GITHUB_OUTPUT"; diff --git a/README.md b/README.md index fbdf917..db71b88 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![License](https://img.shields.io/badge/license-CC0--1.0%2FMIT%2FApache--2.0-blue.svg)](https://github.com/ameknite/rust-ci-cd-template?tab=readme-ov-file#license) [![Crates.io](https://img.shields.io/crates/v/rust-ci-cd-template.svg)](https://crates.io/crates/rust-ci-cd-template) -[![Minimum Supported Rust Version](https://img.shields.io/badge/MSRV-1.59.0+-red.svg)](./Cargo.toml#L8) +[![Minimum Supported Rust Version](https://img.shields.io/badge/MSRV-1.81.0+-red.svg)](./Cargo.toml#L8) [![CI](https://github.com/ameknite/rust-ci-cd-template/actions/workflows/ci.yaml/badge.svg)](https://github.com/ameknite/rust-ci-cd-template/actions?workflow=CI) Template to maintain a rust project running CI/CD with Github Workflows.