From d56fa94146a0cb4357f7338a7d351a288c9da4d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 17 Oct 2024 20:10:35 +0300 Subject: [PATCH] ci: Update to Rust 1.82 Part-of: --- .gitlab-image-tags.yml | 6 +++--- ci/docker/windows/install_rust.ps1 | 2 +- ci/scripts/install-rust.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-image-tags.yml b/.gitlab-image-tags.yml index abaf74c7f9..f8283719b6 100644 --- a/.gitlab-image-tags.yml +++ b/.gitlab-image-tags.yml @@ -5,12 +5,12 @@ variables: # If you are hacking on them or need a them to rebuild, its enough # to change any part of the string of the image you want. ### - FEDORA_TAG: '2024-09-05.0' + FEDORA_TAG: '2024-10-17.0' - DEBIAN_TAG: '2024-09-05.0' + DEBIAN_TAG: '2024-10-17.0' INDENT_TAG: '2024-05-28.0' LINT_TAG: '2024-02-20.0' - WINDOWS_TAG: '2024-09-05.0' + WINDOWS_TAG: '2024-10-17.0' diff --git a/ci/docker/windows/install_rust.ps1 b/ci/docker/windows/install_rust.ps1 index 74f7c21470..2451b1cdaa 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.81.0' +$rust_version = '1.82.0' $rustup_url = 'https://win.rustup.rs/x86_64' Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe diff --git a/ci/scripts/install-rust.sh b/ci/scripts/install-rust.sh index d74d6fc224..c5a0bbd641 100644 --- a/ci/scripts/install-rust.sh +++ b/ci/scripts/install-rust.sh @@ -4,7 +4,7 @@ set -eux # Install Rust RUSTUP_VERSION=1.27.1 -RUST_VERSION=1.81.0 +RUST_VERSION=1.82.0 RUST_ARCH="x86_64-unknown-linux-gnu" RUSTUP_URL=https://static.rust-lang.org/rustup/archive/$RUSTUP_VERSION/$RUST_ARCH/rustup-init