From 040741e42c7d416d155454cb49e5ee2141000516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 7 Aug 2023 11:11:57 +0300 Subject: [PATCH] ci: Update to Rust 1.71.1 Part-of: --- ci/docker/fedora/prepare.sh | 2 +- ci/docker/windows/install_rust.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/docker/fedora/prepare.sh b/ci/docker/fedora/prepare.sh index d720f62a75..3c923a7ed5 100644 --- a/ci/docker/fedora/prepare.sh +++ b/ci/docker/fedora/prepare.sh @@ -219,7 +219,7 @@ rm -f *.rpm # Install Rust RUSTUP_VERSION=1.26.0 -RUST_VERSION=1.71.0 +RUST_VERSION=1.71.1 RUST_ARCH="x86_64-unknown-linux-gnu" dnf install -y wget diff --git a/ci/docker/windows/install_rust.ps1 b/ci/docker/windows/install_rust.ps1 index 8361e4f8e0..dd1640de2e 100644 --- a/ci/docker/windows/install_rust.ps1 +++ b/ci/docker/windows/install_rust.ps1 @@ -1,6 +1,6 @@ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; -$rust_version = '1.71.0' +$rust_version = '1.71.1' $rustup_url = 'https://win.rustup.rs/x86_64' Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe