You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+26-5Lines changed: 26 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -45,13 +45,13 @@ RUN url="https://github.com/olix0r/j5j/releases/download/${J5J_VERSION}/j5j-${J5
45
45
46
46
# just runs build/test recipes. Like `make` but a bit more ergonomic.
47
47
FROM apt-base as just
48
-
ARG JUST_VERSION=1.41.0 # repo=casey/just
48
+
ARG JUST_VERSION=1.42.4 # repo=casey/just
49
49
RUN url="https://github.com/casey/just/releases/download/${JUST_VERSION}/just-${JUST_VERSION}-x86_64-unknown-linux-musl.tar.gz" ; \
50
50
scurl "$url" | tar zvxf - -C /usr/local/bin just
51
51
52
52
# yq is kind of like jq, but for YAML.
53
53
FROM apt-base as yq
54
-
ARG YQ_VERSION=v4.46.1 # repo=mikefarah/yq
54
+
ARG YQ_VERSION=v4.47.1 # repo=mikefarah/yq
55
55
RUN url="https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" ; \
56
56
scurl -o /yq "$url" && chmod +x /yq
57
57
@@ -80,7 +80,7 @@ RUN url="https://github.com/norwoodj/helm-docs/releases/download/$HELM_DOCS_VERS
RUN url="https://github.com/olix0r/cargo-action-fmt/releases/download/release%2F${CARGO_ACTION_FMT_VERSION}/cargo-action-fmt-${CARGO_ACTION_FMT_VERSION}-x86_64-unknown-linux-musl.tar.gz" ; \
166
180
scurl "$url" | tar zvxf - -C /usr/local/bin cargo-action-fmt
RUN url="https://github.com/rust-secure-code/cargo-auditable/releases/download/${CARGO_AUDITABLE_VERSION}/cargo-auditable-x86_64-unknown-linux-gnu.tar.xz" ; \
185
+
scurl "$url" | tar xJvf - --strip-components=1 -C /usr/local/bin cargo-auditable-x86_64-unknown-linux-gnu/cargo-auditable
186
+
168
187
# cargo-deny checks cargo dependencies for licensing and RUSTSEC security issues.
RUN url="https://github.com/nextest-rs/nextest/releases/download/cargo-nextest-${NEXTEST_VERSION}/cargo-nextest-${NEXTEST_VERSION}-x86_64-unknown-linux-gnu.tar.gz" ; \
178
197
scurl "$url" | tar zvxf - -C /usr/local/bin cargo-nextest
179
198
@@ -185,6 +204,7 @@ RUN url="https://github.com/xd009642/tarpaulin/releases/download/${CARGO_TARPAUL
0 commit comments