From 62db699756bb94bbc0578e420dab22a0ca2e8a30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 20 Sep 2023 16:15:09 +0300 Subject: [PATCH] ci: Update to Rust 1.72.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 006f79b75c..bcff69a5bc 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.72.0 +RUST_VERSION=1.72.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 e3f17c7b18..8828ab2775 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.72.0' +$rust_version = '1.72.1' $rustup_url = 'https://win.rustup.rs/x86_64' Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe