From 17d7b017579ebf3656dca15004ae4aa900dc8602 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 7 Oct 2021 14:03:13 -0500 Subject: [PATCH] chore: Update MSRV --- .github/workflows/ci.yml | 6 +++--- .github/workflows/rust-next.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36de16e..21a4dee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,7 +67,7 @@ jobs: - name: No-default features run: cargo test --workspace --no-default-features msrv: - name: "Check MSRV: 1.40.0" + name: "Check MSRV: 1.54.0" needs: smoke runs-on: ubuntu-latest steps: @@ -76,7 +76,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.40.0 # MSRV + toolchain: 1.54.0 # MSRV profile: minimal override: true - uses: Swatinem/rust-cache@v1 @@ -129,7 +129,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.40.0 # MSRV + toolchain: 1.54.0 # MSRV profile: minimal override: true components: clippy diff --git a/.github/workflows/rust-next.yml b/.github/workflows/rust-next.yml index 95e7914..af71a19 100644 --- a/.github/workflows/rust-next.yml +++ b/.github/workflows/rust-next.yml @@ -57,9 +57,9 @@ jobs: strategy: matrix: rust: - - 1.44.0 # MSRV + - 1.54.0 # MSRV - stable - continue-on-error: ${{ matrix.rust != '1.44.0' }} # MSRV + continue-on-error: ${{ matrix.rust != '1.54.0' }} # MSRV runs-on: ubuntu-latest steps: - name: Checkout repository