From decf7685a03d1d0ee8803cff48c6bf5c440d968d Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Tue, 18 Mar 2025 14:40:17 -0600 Subject: [PATCH] chore: Bump to rust version 1.85.1 --- .github/workflows/ci.yml | 2 +- stable/alpine3.20/Dockerfile | 2 +- stable/alpine3.21/Dockerfile | 2 +- stable/bookworm/Dockerfile | 2 +- stable/bookworm/slim/Dockerfile | 2 +- stable/bullseye/Dockerfile | 2 +- stable/bullseye/slim/Dockerfile | 2 +- x.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66989c2..373e3c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest env: #RUST_VERSION - RUST_VERSION: 1.85.0 + RUST_VERSION: 1.85.1 #RUST_VERSION strategy: matrix: diff --git a/stable/alpine3.20/Dockerfile b/stable/alpine3.20/Dockerfile index 96c3923..0119cd7 100644 --- a/stable/alpine3.20/Dockerfile +++ b/stable/alpine3.20/Dockerfile @@ -9,7 +9,7 @@ RUN apk add --no-cache \ ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.85.0 + RUST_VERSION=1.85.1 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/alpine3.21/Dockerfile b/stable/alpine3.21/Dockerfile index 90e68b6..7f3ccf1 100644 --- a/stable/alpine3.21/Dockerfile +++ b/stable/alpine3.21/Dockerfile @@ -9,7 +9,7 @@ RUN apk add --no-cache \ ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.85.0 + RUST_VERSION=1.85.1 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/bookworm/Dockerfile b/stable/bookworm/Dockerfile index dc06560..08e1206 100644 --- a/stable/bookworm/Dockerfile +++ b/stable/bookworm/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.85.0 + RUST_VERSION=1.85.1 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bookworm/slim/Dockerfile b/stable/bookworm/slim/Dockerfile index 9dac3e0..dacbc6d 100644 --- a/stable/bookworm/slim/Dockerfile +++ b/stable/bookworm/slim/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.85.0 + RUST_VERSION=1.85.1 RUN set -eux; \ apt-get update; \ diff --git a/stable/bullseye/Dockerfile b/stable/bullseye/Dockerfile index 759c913..ccf7ac0 100644 --- a/stable/bullseye/Dockerfile +++ b/stable/bullseye/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.85.0 + RUST_VERSION=1.85.1 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bullseye/slim/Dockerfile b/stable/bullseye/slim/Dockerfile index c2e33ec..93c18fb 100644 --- a/stable/bullseye/slim/Dockerfile +++ b/stable/bullseye/slim/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.85.0 + RUST_VERSION=1.85.1 RUN set -eux; \ apt-get update; \ diff --git a/x.py b/x.py index 164464a..1697d43 100755 --- a/x.py +++ b/x.py @@ -9,7 +9,7 @@ rustup_version = "1.28.1" Channel = namedtuple("Channel", ["name", "rust_version"]) -stable = Channel("stable", "1.85.0") +stable = Channel("stable", "1.85.1") nightly = Channel("nightly", "nightly") supported_channels = [ stable,