From 3e7abc2a32af83854ee89fa8cdde0e07bea3e1c3 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Tue, 23 Sep 2025 16:15:13 +0200 Subject: [PATCH] build-docker-images-tags: Grant enough permissions to sign images Signed-off-by: Remi Gacogne --- .github/workflows/build-docker-images-tags.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-docker-images-tags.yml b/.github/workflows/build-docker-images-tags.yml index 992a8123af..e781056168 100644 --- a/.github/workflows/build-docker-images-tags.yml +++ b/.github/workflows/build-docker-images-tags.yml @@ -11,6 +11,9 @@ on: permissions: actions: read contents: read + # This is used to complete the identity challenge + # with sigstore/fulcio when running outside of PRs. + id-token: write jobs: prepare: -- 2.47.3