Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
env:
#RUST_VERSION
RUST_VERSION: 1.90.0
RUST_VERSION: 1.91.0
#RUST_VERSION
strategy:
matrix:
Expand Down
48 changes: 24 additions & 24 deletions .github/workflows/mirror_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,68 +22,68 @@ jobs:
- name: alpine3.20
tags: |
1-alpine3.20
1.90-alpine3.20
1.90.0-alpine3.20
1.91-alpine3.20
1.91.0-alpine3.20
alpine3.20
- name: alpine3.21
tags: |
1-alpine3.21
1.90-alpine3.21
1.90.0-alpine3.21
1.91-alpine3.21
1.91.0-alpine3.21
alpine3.21
- name: alpine3.22
tags: |
1-alpine3.22
1.90-alpine3.22
1.90.0-alpine3.22
1.91-alpine3.22
1.91.0-alpine3.22
alpine3.22
1-alpine
1.90-alpine
1.90.0-alpine
1.91-alpine
1.91.0-alpine
alpine
- name: bullseye
tags: |
1-bullseye
1.90-bullseye
1.90.0-bullseye
1.91-bullseye
1.91.0-bullseye
bullseye
- name: slim-bullseye
tags: |
1-slim-bullseye
1.90-slim-bullseye
1.90.0-slim-bullseye
1.91-slim-bullseye
1.91.0-slim-bullseye
slim-bullseye
- name: bookworm
tags: |
1-bookworm
1.90-bookworm
1.90.0-bookworm
1.91-bookworm
1.91.0-bookworm
bookworm
- name: slim-bookworm
tags: |
1-slim-bookworm
1.90-slim-bookworm
1.90.0-slim-bookworm
1.91-slim-bookworm
1.91.0-slim-bookworm
slim-bookworm
- name: trixie
tags: |
1-trixie
1.90-trixie
1.90.0-trixie
1.91-trixie
1.91.0-trixie
trixie
1
1.90
1.90.0
1.91
1.91.0
latest
- name: slim-trixie
tags: |
1-slim-trixie
1.90-slim-trixie
1.90.0-slim-trixie
1.91-slim-trixie
1.91.0-slim-trixie
slim-trixie
1-slim
1.90-slim
1.90.0-slim
1.91-slim
1.91.0-slim
slim
#VERSIONS
steps:
Expand Down
2 changes: 1 addition & 1 deletion stable/alpine3.20/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.90.0
RUST_VERSION=1.91.0

RUN set -eux; \
\
Expand Down
2 changes: 1 addition & 1 deletion stable/alpine3.21/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.90.0
RUST_VERSION=1.91.0

RUN set -eux; \
\
Expand Down
2 changes: 1 addition & 1 deletion stable/alpine3.22/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.90.0
RUST_VERSION=1.91.0

RUN set -eux; \
\
Expand Down
2 changes: 1 addition & 1 deletion stable/bookworm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.90.0
RUST_VERSION=1.91.0

RUN set -eux; \
\
Expand Down
2 changes: 1 addition & 1 deletion stable/bookworm/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.90.0
RUST_VERSION=1.91.0

RUN set -eux; \
\
Expand Down
2 changes: 1 addition & 1 deletion stable/bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.90.0
RUST_VERSION=1.91.0

RUN set -eux; \
\
Expand Down
2 changes: 1 addition & 1 deletion stable/bullseye/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.90.0
RUST_VERSION=1.91.0

RUN set -eux; \
\
Expand Down
2 changes: 1 addition & 1 deletion stable/trixie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.90.0
RUST_VERSION=1.91.0

RUN set -eux; \
\
Expand Down
2 changes: 1 addition & 1 deletion stable/trixie/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.90.0
RUST_VERSION=1.91.0

RUN set -eux; \
\
Expand Down
2 changes: 1 addition & 1 deletion x.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
rustup_version = "1.28.2"

Channel = namedtuple("Channel", ["name", "rust_version"])
stable = Channel("stable", "1.90.0")
stable = Channel("stable", "1.91.0")
nightly = Channel("nightly", "nightly")
supported_channels = [
stable,
Expand Down