Skip to content

Commit 2c40c88

Browse files
committed
ci: pin docker image to 1.92
1 parent 3ef998f commit 2c40c88

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ updates:
5959
commit-message:
6060
prefix: "docker"
6161
include: "scope"
62+
ignore:
63+
# Rust version is pinned to match rust-toolchain.toml (1.92)
64+
# Update manually when upgrading the project's Rust version
65+
- dependency-name: "rust"
6266
groups:
6367
docker-images:
6468
patterns:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# =============================================================================
1313
# Stage 1: Builder
1414
# =============================================================================
15-
FROM rust:1.93-bookworm AS builder
15+
FROM rust:1.92-bookworm AS builder
1616

1717
# Install protobuf compiler and well-known types (required for gRPC code generation)
1818
RUN apt-get update && apt-get install -y --no-install-recommends \

0 commit comments

Comments
 (0)