From 9c3e81deafb7ebc1f7c24170e1dc8a2200196c50 Mon Sep 17 00:00:00 2001 From: biancheng-net <181922196+biancheng-net@users.noreply.github.com> Date: Wed, 10 Jun 2026 16:06:13 +0800 Subject: [PATCH] ci: pin log to 0.4.29 so 1.70 MSRV jobs build again `log >= 0.4.30` bumped its MSRV to 1.71, so every `Test 1.70.0` job on this branch has been failing with: error: package `log v0.4.32` cannot be built because it requires rustc 1.71.0 or newer, while the currently active rustc version is 1.70.0 Pin `log` to the last 1.70-compatible release (`0.4.29`, rust_version = 1.68) in the same lockfile-generation step that already pins ahash / bumpalo / etc., so MSRV CI goes green until winit decides to bump its own MSRV. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa80f40957..e745bf022c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,6 +118,11 @@ jobs: cargo update -p gethostname@1.1.0 --precise 1.0.2 cargo update -p unicode-ident --precise 1.0.10 cargo update -p syn --precise 2.0.114 + # `log >= 0.4.30` bumped its MSRV to 1.71, which breaks the + # Test 1.70.0 matrix jobs. Pin to the last 1.70-compatible + # release (`0.4.29`, rust_version = 1.68) until winit bumps + # its own MSRV. + cargo update -p log --precise 0.4.29 - name: Install GCC Multilib if: (matrix.platform.os == 'ubuntu-latest') && contains(matrix.platform.target, 'i686')