diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d53c45c..44dd200 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.82.0 + RUST_VERSION: 1.83.0 #RUST_VERSION strategy: matrix: diff --git a/stable/alpine3.19/Dockerfile b/stable/alpine3.19/Dockerfile index d220467..c601ed6 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.82.0 + RUST_VERSION=1.83.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/alpine3.20/Dockerfile b/stable/alpine3.20/Dockerfile index 9d97077..33203b8 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.82.0 + RUST_VERSION=1.83.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/bookworm/Dockerfile b/stable/bookworm/Dockerfile index 02c2d35..584ae6c 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.82.0 + RUST_VERSION=1.83.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bookworm/slim/Dockerfile b/stable/bookworm/slim/Dockerfile index 970b849..c4ff241 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.82.0 + RUST_VERSION=1.83.0 RUN set -eux; \ apt-get update; \ diff --git a/stable/bullseye/Dockerfile b/stable/bullseye/Dockerfile index a9dc0ec..14b038a 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.82.0 + RUST_VERSION=1.83.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bullseye/slim/Dockerfile b/stable/bullseye/slim/Dockerfile index 8f584d3..0f4727f 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.82.0 + RUST_VERSION=1.83.0 RUN set -eux; \ apt-get update; \ diff --git a/x.py b/x.py index 819052c..89cb791 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.82.0") +stable = Channel("stable", "1.83.0") nightly = Channel("nightly", "nightly") supported_channels = [ stable,