Add minimum token permissions for all GitHub workflow files #17
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds minimum token permissions to all GitHub workflow files to improve security posture according to OpenSSF Scorecard recommendations.
Changes Made
Root-Level Permissions Added
Added
permissions: contents: read
to 14 workflow files that were missing root-level permissions:close-stale.yml
codeql-analysis.yml
component-owners.yml
label-prs.yml
lint.yml
peer-api.yaml
pr-title.yml
release-please-validate.yaml
release-please.yml
test-all-versions.pr.yml
test-all-versions.push.yml
test-all-versions.yml
unit-test.yml
update-otel-deps.yaml
Job-Level Permissions Added
Added appropriate job-level write permissions where needed:
close-stale.yml
: Addedissues: write
andpull-requests: write
for stale bot actionscodeql-analysis.yml
: Addedsecurity-events: write
for CodeQL analysis uploadscomponent-owners.yml
: Addedpull-requests: write
for assigning reviewerspr-title.yml
: Addedpull-requests: write
for PR title validation commentsrelease-please.yml
: Addedcontents: write
andpull-requests: write
for release actionsExisting Permissions Preserved
The following files already had proper root-level permissions and were left unchanged:
fossa.yml
(already hadpermissions: contents: read
)ossf-scorecard.yml
(already hadpermissions: read-all
)Verification
All 16 workflow files now pass OpenSSF Scorecard Token-Permissions check:
contents: read
orread-all
Security Impact
This change significantly improves the repository's security posture by:
Fixes #16.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.