From 8ebdefcbb7ccedea3b48984b479c9f6ccac0af3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 24 Aug 2023 17:08:47 +0300 Subject: [PATCH] ci: Update to Rust 1.72 Part-of: --- .gitlab-image-tags.yml | 4 ++-- ci/docker/fedora/prepare.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 a22e59048d..2968116d5e 100644 --- a/.gitlab-image-tags.yml +++ b/.gitlab-image-tags.yml @@ -5,7 +5,7 @@ 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-08-07.0' + FEDORA_TAG: '2023-08-24.0' INDENT_TAG: '2023-06-14.1' LINT_TAG: '2023-02-16.5' - WINDOWS_TAG: '2023-08-10.0' + WINDOWS_TAG: '2023-08-24.0' diff --git a/ci/docker/fedora/prepare.sh b/ci/docker/fedora/prepare.sh index 44dc454937..0dc86aa96f 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.71.1 +RUST_VERSION=1.72.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 dd1640de2e..e3f17c7b18 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.71.1' +$rust_version = '1.72.0' $rustup_url = 'https://win.rustup.rs/x86_64' Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe