From baebba805ea3a67ca6da07bc0b12115a7ac6dd17 Mon Sep 17 00:00:00 2001 From: Timo Furrer <tfurrer@gitlab.com> Date: Wed, 30 Oct 2024 14:29:52 +0100 Subject: [PATCH] Install crane --- .gitlab-ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 36cc5ff..17edf16 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -253,7 +253,9 @@ gitlab-opentofu-image:deploy:dry-run: gitlab-opentofu-image:sign: extends: '.image-matrix:deploy' stage: sign - image: alpine:3.20.3 + image: + name: alpine/crane:0.20.2 + entrypoint: [""] variables: COSIGN_YES: "true" # Used by Cosign to skip confirmation prompts for non-destructive operations id_tokens: @@ -275,7 +277,9 @@ gitlab-opentofu-image:sign: gitlab-opentofu-image:verify-signature: extends: '.image-matrix:deploy' stage: verify - image: alpine:3.20.3 + image: + name: alpine/crane:0.20.2 + entrypoint: [""] before_script: - *image-matrix-deploy-release-name-script - apk add --update cosign -- GitLab