From 5da74997b225f040ecb7e5db1d68f22feb907f9b Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Fri, 23 Jan 2026 09:32:45 +0100 Subject: [PATCH] Drop unnecessary Rust install in SemVer CI In the last few days there was incompatibility of `cargo-semver-checks` with the new stable Rust 1.93.0. While this should fixed by today's release of `cargo-semver-checks`, we take the opportunity to drop an unnecessary install step from the CI workflow, as the action will bring their own Rust version if not configured otherwise. --- .github/workflows/semver.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/semver.yml b/.github/workflows/semver.yml index 03017e19320..03a8e46e8a7 100644 --- a/.github/workflows/semver.yml +++ b/.github/workflows/semver.yml @@ -13,10 +13,6 @@ jobs: steps: - name: Checkout source code uses: actions/checkout@v4 - - name: Install Rust stable toolchain - run: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain stable - rustup override set stable - name: Check SemVer with default features uses: obi1kenobi/cargo-semver-checks-action@v2 with: