From b8eb191e5c91e0aafb53e0554abb28f79ab3828d Mon Sep 17 00:00:00 2001 From: Sludge Date: Fri, 16 May 2025 22:06:51 +0200 Subject: [PATCH] Use `rustup default` instead of `install` for MSRV --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2a58f90..8f29bbe 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,6 +21,7 @@ jobs: - name: Install Rust toolchain run: | rustup install ${{ env.MSRV }} --profile=minimal + rustup default ${{ env.MSRV }} rustup install nightly --profile=minimal - name: Install CI/CD tooling