Skip to content

Commit 3325fe2

Browse files
neilnaveeneregon
authored andcommitted
chore: Set permissions for GitHub actions
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: neilnaveen <[email protected]>
1 parent e8f04a3 commit 3325fe2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
name: Update the v1 branch when a release is published
22
on:
33
release:
4+
permissions:
5+
contents: write # for Git to git push
46
types: [published]
7+
permissions:
8+
contents: read
9+
510
jobs:
611
release:
712
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)