From 0453a2783854900c535ce2d09b19fac53f50c687 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 11 Jan 2024 16:49:43 +0100 Subject: [PATCH] ci: Remove MSRV from job name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … so we don't have to update branch protection rules whenever we bump the MSRV. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca6737da..d4ff3be5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,7 +67,7 @@ jobs: run: target/debug/xtask ci lint msrv: - name: Rust 1.75 / ${{ matrix.name }} + name: Minimum Supported Rust Version / ${{ matrix.name }} needs: xtask runs-on: ubuntu-latest strategy: @@ -92,7 +92,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 - - name: Install rust 1.75 toolchain + - name: Install MSRV toolchain uses: dtolnay/rust-toolchain@master with: toolchain: "1.75"