From eca7084f4eee61e3ad2160bfe981a45030faa5ae Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Mon, 30 Mar 2026 10:16:30 +0200 Subject: [PATCH] fix(ci): grant security-events and packages permissions to security job Reusable workflow calls inherit only explicitly granted permissions. The nested security job requires packages: read and security-events: write for CodeQL analysis. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db8c9b4..dd7bb02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,10 @@ jobs: security: name: Run security workflow uses: ./.github/workflows/security.yml + permissions: + contents: read + packages: read + security-events: write tests: name: Run test workflow