Skip to content

Commit 86962c6

Browse files
authored
Merge pull request #20970 from github/smowton/admin/document-missing-actions-permissions-shortcomings
Actions: note imprecision of MissingActionsPermissions.ql
2 parents 795bfdf + 02caa09 commit 86962c6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

actions/ql/src/Security/CWE-275/MissingActionsPermissions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
If a GitHub Actions job or workflow has no explicit permissions set, then the repository permissions are used. Repositories created under organizations inherit the organization permissions. The organizations or repositories created before February 2023 have the default permissions set to read-write. Often these permissions do not adhere to the principle of least privilege and can be reduced to read-only, leaving the `write` permission only to a specific types as `issues: write` or `pull-requests: write`.
44

5+
Note that this query cannot check whether the organization or repository token settings are set to read-only. However, even if they are, it is recommended to define explicit permissions (`contents: read` and `packages: read` are equivalent to the read-only default) so that (a) the actual needs of the workflow are documented, and (b) the permissions will remain restricted if the default is subsequently changed, or the workflow is copied to a different repository or organization.
6+
57
## Recommendation
68

79
Add the `permissions` key to the job or the root of workflow (in this case it is applied to all jobs in the workflow that do not have their own `permissions` key) and assign the least privileges required to complete the task.

0 commit comments

Comments
 (0)