diff --git a/.gitlab-image-tags.yml b/.gitlab-image-tags.yml index be373645a3..abaf74c7f9 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-08-28.0' + FEDORA_TAG: '2024-09-05.0' - DEBIAN_TAG: '2024-08-10.2' + DEBIAN_TAG: '2024-09-05.0' INDENT_TAG: '2024-05-28.0' LINT_TAG: '2024-02-20.0' - WINDOWS_TAG: '2024-08-10.2' + WINDOWS_TAG: '2024-09-05.0' diff --git a/ci/docker/windows/install_rust.ps1 b/ci/docker/windows/install_rust.ps1 index 60ce8b3673..74f7c21470 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.80.1' +$rust_version = '1.81.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 7650b8eb2a..ead65fd412 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.80.1 +RUST_VERSION=1.81.0 RUST_ARCH="x86_64-unknown-linux-gnu" RUSTUP_URL=https://static.rust-lang.org/rustup/archive/$RUSTUP_VERSION/$RUST_ARCH/rustup-init