diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a17340..d53c45c 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.81.0 + RUST_VERSION: 1.82.0 #RUST_VERSION strategy: matrix: diff --git a/stable/alpine3.19/Dockerfile b/stable/alpine3.19/Dockerfile index 40d5e1d..d220467 100644 --- a/stable/alpine3.19/Dockerfile +++ b/stable/alpine3.19/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.81.0 + RUST_VERSION=1.82.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/alpine3.20/Dockerfile b/stable/alpine3.20/Dockerfile index 22e6f7c..9d97077 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.81.0 + RUST_VERSION=1.82.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/bookworm/Dockerfile b/stable/bookworm/Dockerfile index f3bcb7d..02c2d35 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.81.0 + RUST_VERSION=1.82.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bookworm/slim/Dockerfile b/stable/bookworm/slim/Dockerfile index 6ac9ae5..970b849 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.81.0 + RUST_VERSION=1.82.0 RUN set -eux; \ apt-get update; \ diff --git a/stable/bullseye/Dockerfile b/stable/bullseye/Dockerfile index 2115fcc..a9dc0ec 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.81.0 + RUST_VERSION=1.82.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bullseye/slim/Dockerfile b/stable/bullseye/slim/Dockerfile index 8f3f708..8f584d3 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.81.0 + RUST_VERSION=1.82.0 RUN set -eux; \ apt-get update; \ diff --git a/x.py b/x.py index e75e604..819052c 100755 --- a/x.py +++ b/x.py @@ -9,7 +9,7 @@ rustup_version = "1.27.1" Channel = namedtuple("Channel", ["name", "rust_version"]) -stable = Channel("stable", "1.81.0") +stable = Channel("stable", "1.82.0") nightly = Channel("nightly", "nightly") supported_channels = [ stable,