fix(rust-ci-runner): pin the build-stage rust image; make the rustup pin real #114
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/rust-ci-runner-pin-build-stage"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Two things, same file:
rustup default ${RUST_VERSION}has been running as a barerustup default— which prints the default instead of setting it. Green only because the base image's default happens to match. Redeclared, so the pin actually operates.Generated with Claude Code
Two things, same file: - rust:1.97.0-slim-bookworm floated by digest. Pinned at what the tag resolves to today (image unchanged), as its own ARG because RUST_VERSION doubles as a rustup toolchain name where a digest suffix would corrupt it. Both ARGs carry the same Renovate depName so they move in one PR. - RUST_VERSION was never redeclared after FROM, so step 1.6's 'rustup default ${RUST_VERSION}' has been running as a bare 'rustup default' — which PRINTS the default instead of setting it. Green only because the base image's default happens to match. Redeclared, so the pin actually operates. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>