From 1c1a119dfa1d7efc0738ade968146ebc07afdfe3 Mon Sep 17 00:00:00 2001 From: Dan Urson Date: Fri, 27 Dec 2024 16:13:36 -0500 Subject: [PATCH] Update cosign command to use --recursive=true for signing images Signed-off-by: Dan Urson --- .github/workflows/atlantis-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/atlantis-image.yml b/.github/workflows/atlantis-image.yml index 5c89d2ae8d..1786200659 100644 --- a/.github/workflows/atlantis-image.yml +++ b/.github/workflows/atlantis-image.yml @@ -171,7 +171,7 @@ jobs: run: | echo "${TAGS}" | xargs -I {} cosign sign \ --yes \ - -r \ # recursively sign each image in an architecture + --recursive=true \ -a actor=${{ github.actor}} \ -a ref_name=${{ github.ref_name}} \ -a ref=${{ github.sha }} \