Skip to content

Commit

Permalink
fix msrv workflow , update msrv readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ameknite committed Oct 10, 2024
1 parent ed48f58 commit e8aba23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update_msrv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit e8aba23

Please sign in to comment.