From 9eaacc70aa92d83c5c179dde0511767442d1d9dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 7 Nov 2025 11:59:54 +0100 Subject: [PATCH] fix: add attestations write permission to workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The artifact attestation step was failing with: "Resource not accessible by integration" Added missing attestations: write permission to fix the issue. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/docker-publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 910fb41..8f22bd1 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -22,6 +22,7 @@ jobs: contents: read packages: write id-token: write + attestations: write steps: - name: Checkout repository