diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 80a807f..8c23799 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.86.0 + RUST_VERSION: 1.87.0 #RUST_VERSION strategy: matrix: diff --git a/stable/alpine3.20/Dockerfile b/stable/alpine3.20/Dockerfile index 34e30e9..a0c0115 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.86.0 + RUST_VERSION=1.87.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/alpine3.21/Dockerfile b/stable/alpine3.21/Dockerfile index b1732d7..17f9f71 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.86.0 + RUST_VERSION=1.87.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/bookworm/Dockerfile b/stable/bookworm/Dockerfile index 9528631..dbd5021 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.86.0 + RUST_VERSION=1.87.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bookworm/slim/Dockerfile b/stable/bookworm/slim/Dockerfile index 914fe5f..4f5dd88 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.86.0 + RUST_VERSION=1.87.0 RUN set -eux; \ apt-get update; \ diff --git a/stable/bullseye/Dockerfile b/stable/bullseye/Dockerfile index 5395441..f3ce81d 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.86.0 + RUST_VERSION=1.87.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bullseye/slim/Dockerfile b/stable/bullseye/slim/Dockerfile index ea34ce3..6803142 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.86.0 + RUST_VERSION=1.87.0 RUN set -eux; \ apt-get update; \ diff --git a/x.py b/x.py index 818e87a..a242ccf 100755 --- a/x.py +++ b/x.py @@ -9,7 +9,7 @@ rustup_version = "1.28.2" Channel = namedtuple("Channel", ["name", "rust_version"]) -stable = Channel("stable", "1.86.0") +stable = Channel("stable", "1.87.0") nightly = Channel("nightly", "nightly") supported_channels = [ stable,