From 6ee94cd8c7292b22117231e12a1a2041c62450a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 16 Nov 2023 16:47:09 +0200 Subject: [PATCH] ci: Update to Rust 1.74 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 250dd743f0..e7704d5443 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: '2023-11-13.2' + FEDORA_TAG: '2023-11-16.0' INDENT_TAG: '2023-08-24.3' LINT_TAG: '2023-02-16.5' - WINDOWS_TAG: '2023-10-10.0' + WINDOWS_TAG: '2023-11-16.0' diff --git a/ci/docker/fedora/install-rust.sh b/ci/docker/fedora/install-rust.sh index fe38a3fe92..d24bdac07d 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.26.0 -RUST_VERSION=1.73.0 +RUST_VERSION=1.74.0 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 901c775062..1db5fabc06 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.73.0' +$rust_version = '1.74.0' $rustup_url = 'https://win.rustup.rs/x86_64' Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe