Skip to content

Commit 7928535

Browse files
committed
chore(ubi-rust-builders): bump dependencies
Note: Ignoring protoc (which could go to 34.0, but now it feels too close to the release time to update it).
1 parent 8ac38a0 commit 7928535

3 files changed

Lines changed: 11 additions & 8 deletions

File tree

ubi10-rust-builder/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ LABEL maintainer="Stackable GmbH"
1515
# See https://github.com/rust-lang/rustup/blob/4514d36fcc9c42416176111cd841c86f7ec44b2c/rustup-init.sh#L91
1616
# Find the latest version here: https://github.com/rust-lang/rustup/blob/master/CHANGELOG.md
1717
# renovate: datasource=github-tags packageName=rust-lang/rustup
18-
ENV RUSTUP_VERSION=1.28.2
18+
ENV RUSTUP_VERSION=1.29.0
1919
# This SHOULD be kept in sync with operator-templating and other tools to reduce build times
2020
# Find the latest version here: https://doc.rust-lang.org/stable/releases.html
2121
# renovate: datasource=github-releases packageName=rust-lang/rust
22-
ENV RUST_DEFAULT_TOOLCHAIN_VERSION=1.89.0
22+
ENV RUST_DEFAULT_TOOLCHAIN_VERSION=1.93.0
2323
# Find the latest version here: https://crates.io/crates/cargo-cyclonedx
2424
# renovate: datasource=crate packageName=cargo-cyclonedx
2525
ENV CARGO_CYCLONEDX_CRATE_VERSION=0.5.7
2626
# Find the latest version here: https://crates.io/crates/cargo-auditable
2727
# renovate: datasource=crate packageName=cargo-auditable
28-
ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.1
28+
ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.2
2929
# Find the latest version here: https://github.com/protocolbuffers/protobuf/releases
3030
# Upload any newer version to nexus with ./.scripts/upload_new_protoc_version.sh
3131
# renovate: datasource=github-releases packageName=protocolbuffers/protobuf

ubi9-rust-builder/Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,28 @@
33

44
# Find the latest version at https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5?container-tabs=gti
55
# IMPORTANT: Be sure to use the Manifest List Digest for multi-arch support
6-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:bb08f2300cb8d12a7eb91dddf28ea63692b3ec99e7f0fa71a1b300f2756ea829 AS builder
6+
# The website is broken, so you can use this to find it:
7+
# curl https://catalog.redhat.com/en/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5 \
8+
# | grep -oE 'registry.redhat.io/ubi9/ubi-minimal@sha256:[a-z0-9]{64}'
9+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 AS builder
710

811
LABEL maintainer="Stackable GmbH"
912

1013
# Pin the rustup version to avoid unexpected breaking changes.
1114
# See https://github.com/rust-lang/rustup/blob/4514d36fcc9c42416176111cd841c86f7ec44b2c/rustup-init.sh#L91
1215
# Find the latest version here: https://github.com/rust-lang/rustup/blob/master/CHANGELOG.md
1316
# renovate: datasource=github-tags packageName=rust-lang/rustup
14-
ENV RUSTUP_VERSION=1.28.2
17+
ENV RUSTUP_VERSION=1.29.0
1518
# This SHOULD be kept in sync with operator-templating and other tools to reduce build times
1619
# Find the latest version here: https://doc.rust-lang.org/stable/releases.html
1720
# renovate: datasource=github-releases packageName=rust-lang/rust
18-
ENV RUST_DEFAULT_TOOLCHAIN_VERSION=1.89.0
21+
ENV RUST_DEFAULT_TOOLCHAIN_VERSION=1.93.0
1922
# Find the latest version here: https://crates.io/crates/cargo-cyclonedx
2023
# renovate: datasource=crate packageName=cargo-cyclonedx
2124
ENV CARGO_CYCLONEDX_CRATE_VERSION=0.5.7
2225
# Find the latest version here: https://crates.io/crates/cargo-auditable
2326
# renovate: datasource=crate packageName=cargo-auditable
24-
ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.1
27+
ENV CARGO_AUDITABLE_CRATE_VERSION=0.7.2
2528
# Find the latest version here: https://github.com/protocolbuffers/protobuf/releases
2629
# Upload any newer version to nexus with ./.scripts/upload_new_protoc_version.sh
2730
# renovate: datasource=github-releases packageName=protocolbuffers/protobuf

ubi9-rust-builder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This will bake in the current stable Rust version at the time this image was bui
1010
## Example usage
1111

1212
```dockerfile
13-
FROM oci.stackable.tech/ubi9-rust-builder AS builder
13+
FROM oci.stackable.tech/sdp/ubi9-rust-builder AS builder
1414

1515
FROM registry.access.redhat.com/ubi9/ubi-minimal AS operator
1616
LABEL maintainer="Stackable GmbH"

0 commit comments

Comments
 (0)