From 1da0c62021334c4d3ae501bc2e5dd98970ff1b78 Mon Sep 17 00:00:00 2001 From: Erik Bershel <110455084+erik-bershel@users.noreply.github.com> Date: Sun, 21 Sep 2025 13:38:09 +0200 Subject: [PATCH] [all OSs] Pin Rust to 1.89.0 due to a 1.90.0 breaking change (#13044) --- images/ubuntu/scripts/build/install-rust.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/images/ubuntu/scripts/build/install-rust.sh b/images/ubuntu/scripts/build/install-rust.sh index 803988512c..3c960040bb 100644 --- a/images/ubuntu/scripts/build/install-rust.sh +++ b/images/ubuntu/scripts/build/install-rust.sh @@ -11,7 +11,8 @@ source $HELPER_SCRIPTS/os.sh export RUSTUP_HOME=/etc/skel/.rustup export CARGO_HOME=/etc/skel/.cargo -curl -fsSL https://sh.rustup.rs | sh -s -- -y --default-toolchain=stable --profile=minimal +# Pin to 1.89.0 until https://github.com/actions/runner-images/issues/13041 && https://github.com/rust-lang/rust/issues/145936 is resolved +curl -fsSL https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.89.0 --profile=minimal # Initialize environment variables source $CARGO_HOME/env