From 4d72d14f08558f35fc5bd76746afe9aeb430fb90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 06:14:29 +0000 Subject: [PATCH] build(deps): bump alpine from 3.19 to 3.20 in /images/crane Bumps alpine from 3.19 to 3.20. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- images/crane/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/crane/Dockerfile b/images/crane/Dockerfile index 4156bb5..8374d47 100644 --- a/images/crane/Dockerfile +++ b/images/crane/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.19 AS crane +FROM alpine:3.20 AS crane ARG VERSION=0.17.0 # RUN apk add --no-cache go && go install github.com/slsa-framework/slsa-verifier/cli/slsa-verifier@v1.3.1 RUN ARCH=$(uname -m) OS=$(uname) && \ @@ -7,7 +7,7 @@ RUN ARCH=$(uname -m) OS=$(uname) && \ # ~/go/bin/slsa-verifier -artifact-path go-containerregistry.tar.gz -provenance provenance.intoto.jsonl -source github.com/google/go-containerregistry -tag "v${VERSION}" && \ tar xvzf go-containerregistry.tar.gz -C /bin -FROM alpine:3.19 +FROM alpine:3.20 COPY --from=crane /bin/crane /bin/crane RUN apk add --no-cache bash tar