diff --git a/ci/check-rust-formatting.Dockerfile b/ci/check-rust-formatting.Dockerfile index f593b6f..1d285ca 100644 --- a/ci/check-rust-formatting.Dockerfile +++ b/ci/check-rust-formatting.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.91.1-alpine3.21@sha256:32817dd3ce1cd4ed459dcc289df1b906dc53719975156636e605063821668b1e +FROM rust:1.92.0-alpine3.21@sha256:82e772a24cfceaea095cc3f36b7bdeab048fc4f1164e0948939ee7a3f070ddbb RUN rustup component add rustfmt ENTRYPOINT ["cargo", "fmt", "--all", "--", "--check", "--config=group_imports=StdExternalCrate"] diff --git a/ci/check-rust-linting.Dockerfile b/ci/check-rust-linting.Dockerfile index 5689c77..040c7e6 100644 --- a/ci/check-rust-linting.Dockerfile +++ b/ci/check-rust-linting.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.91.1-alpine3.21@sha256:32817dd3ce1cd4ed459dcc289df1b906dc53719975156636e605063821668b1e +FROM rust:1.92.0-alpine3.21@sha256:82e772a24cfceaea095cc3f36b7bdeab048fc4f1164e0948939ee7a3f070ddbb RUN apk add --no-cache \ musl-dev=1.2.5-r9 RUN rustup component add clippy diff --git a/ci/compile.Dockerfile b/ci/compile.Dockerfile index ef943fb..1357901 100644 --- a/ci/compile.Dockerfile +++ b/ci/compile.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.91.1-alpine3.21@sha256:32817dd3ce1cd4ed459dcc289df1b906dc53719975156636e605063821668b1e +FROM rust:1.92.0-alpine3.21@sha256:82e772a24cfceaea095cc3f36b7bdeab048fc4f1164e0948939ee7a3f070ddbb RUN apk add --no-cache \ musl-dev=1.2.5-r9 diff --git a/ci/fix-rust-formatting.Dockerfile b/ci/fix-rust-formatting.Dockerfile index 4986135..0125465 100644 --- a/ci/fix-rust-formatting.Dockerfile +++ b/ci/fix-rust-formatting.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.91.1-alpine3.21@sha256:32817dd3ce1cd4ed459dcc289df1b906dc53719975156636e605063821668b1e +FROM rust:1.92.0-alpine3.21@sha256:82e772a24cfceaea095cc3f36b7bdeab048fc4f1164e0948939ee7a3f070ddbb RUN rustup component add rustfmt ENTRYPOINT ["cargo", "fmt", "--all", "--", "--config=group_imports=StdExternalCrate"] diff --git a/ci/unit-test.Dockerfile b/ci/unit-test.Dockerfile index 16028b6..52d752b 100644 --- a/ci/unit-test.Dockerfile +++ b/ci/unit-test.Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.91.1-alpine3.21@sha256:32817dd3ce1cd4ed459dcc289df1b906dc53719975156636e605063821668b1e +FROM rust:1.92.0-alpine3.21@sha256:82e772a24cfceaea095cc3f36b7bdeab048fc4f1164e0948939ee7a3f070ddbb RUN apk add --no-cache \ musl-dev=1.2.5-r9