From ebcb2eac68bad1b534ab1b55cdd83aba6974955a Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Thu, 11 Sep 2025 14:23:32 +0200 Subject: [PATCH] github workflows staticbuild: use stable Rust on Linux We use the MSRV for CI checks, and for deploying to old macOS. But for static Linux builds , there should be no reason to use an old Rust version. Let's track stable. --- .github/workflows/staticbuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/staticbuild.yml b/.github/workflows/staticbuild.yml index 25ee26972..3d6323a0c 100644 --- a/.github/workflows/staticbuild.yml +++ b/.github/workflows/staticbuild.yml @@ -16,7 +16,7 @@ jobs: contents: read steps: - - uses: ./.github/actions/rust-toolchain@oldest-supported + - uses: ./.github/actions/rust-toolchain@stable - uses: actions/checkout@v4 with: fetch-depth: 0