From 78099afdbe412d5df55990f3c217db25aac54b87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 10 Apr 2024 08:57:32 +0300 Subject: [PATCH] ci: Update to Rust 1.77.2 Part-of: --- .gitlab-image-tags.yml | 4 ++-- ci/docker/fedora/install-rust.sh | 2 +- ci/docker/windows/install_rust.ps1 | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-image-tags.yml b/.gitlab-image-tags.yml index 40ed950e29..c0e92542a8 100644 --- a/.gitlab-image-tags.yml +++ b/.gitlab-image-tags.yml @@ -5,10 +5,10 @@ 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-03-29.0' + FEDORA_TAG: '2024-04-10.0' INDENT_TAG: '2023-08-24.3' LINT_TAG: '2024-02-20.0' - WINDOWS_TAG: '2024-03-29.0' + WINDOWS_TAG: '2024-04-10.0' diff --git a/ci/docker/fedora/install-rust.sh b/ci/docker/fedora/install-rust.sh index b8b0183cfb..7f5d34824f 100644 --- a/ci/docker/fedora/install-rust.sh +++ b/ci/docker/fedora/install-rust.sh @@ -4,7 +4,7 @@ set -eux # Install Rust RUSTUP_VERSION=1.27.0 -RUST_VERSION=1.77.1 +RUST_VERSION=1.77.2 RUST_ARCH="x86_64-unknown-linux-gnu" RUSTUP_URL=https://static.rust-lang.org/rustup/archive/$RUSTUP_VERSION/$RUST_ARCH/rustup-init diff --git a/ci/docker/windows/install_rust.ps1 b/ci/docker/windows/install_rust.ps1 index 74f3d3301c..402e1aa12f 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.77.1' +$rust_version = '1.77.2' $rustup_url = 'https://win.rustup.rs/x86_64' Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe