diff --git a/.gitlab-image-tags.yml b/.gitlab-image-tags.yml index e7704d5443..e67c9a4428 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-16.0' + FEDORA_TAG: '2023-12-29.0' INDENT_TAG: '2023-08-24.3' LINT_TAG: '2023-02-16.5' - WINDOWS_TAG: '2023-11-16.0' + WINDOWS_TAG: '2023-12-29.0' diff --git a/ci/docker/fedora/install-rust.sh b/ci/docker/fedora/install-rust.sh index 1cf1d9e603..3accf9a749 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.74.0 +RUST_VERSION=1.75.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 1db5fabc06..a3c10d312f 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.74.0' +$rust_version = '1.75.0' $rustup_url = 'https://win.rustup.rs/x86_64' Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe