We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e068b commit f828467Copy full SHA for f828467
Dockerfile
@@ -36,10 +36,10 @@ ARG TARGETARCH
36
37
# Validations
38
# Validate formatting
39
-RUN if [ $TARGETARCH = "amd64" ]; then rustup component add rustfmt && cargo fmt --check ; fi
+RUN if [ $TARGETARCH = "amd64" ]; then rustup component add rustfmt --toolchain 1.87 && cargo fmt --check ; fi
40
41
# Audit dependencies
42
-RUN if [ $TARGETARCH = "amd64" ]; then cargo install cargo-audit && cargo audit ; fi
+RUN if [ $TARGETARCH = "amd64" ]; then cargo install cargo-audit@0.20.0 && cargo audit ; fi
43
44
45
# Cross-compile based on the target platform.
0 commit comments