From 9bc9757d13f17a762cb0720f742165788733ae1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 10 Oct 2023 12:51:38 +0300 Subject: [PATCH] ci: Update to Rust 1.73 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 5e536a88cd..f7c926e998 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.1 +RUST_VERSION=1.73.0 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 8828ab2775..901c775062 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.1' +$rust_version = '1.73.0' $rustup_url = 'https://win.rustup.rs/x86_64' Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe