From d3727206f2dd83acabad51e49075ac478e328989 Mon Sep 17 00:00:00 2001 From: Yiftach Cohen Date: Tue, 24 Mar 2026 11:50:59 +0200 Subject: [PATCH] [PPSC-607] docs(ci): add missing actions: read permission to README examples The three GitHub Actions CI/CD snippets in the README were missing the actions: read permission, which is required for accessing workflow artifacts. The actual workflow files already include this permission. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9ff96c9..684b021 100644 --- a/README.md +++ b/README.md @@ -510,6 +510,7 @@ on: permissions: contents: read + actions: read security-events: write pull-requests: write @@ -556,6 +557,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + actions: read security-events: write steps: - uses: actions/checkout@v4 @@ -585,6 +587,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + actions: read security-events: write steps: - uses: actions/checkout@v4