fix: add explicit permissions to all GitHub Actions workflows#693
Merged
Zee2413 merged 1 commit intoaws-cloudformation:mainfrom Mar 30, 2026
Merged
Conversation
Add top-level permissions blocks to restrict GITHUB_TOKEN scope, resolving 24 CodeQL code-scanning alerts (actions/missing-workflow-permissions). Without explicit permissions, workflows get the repo's default token permissions, which is typically overly broad. This follows the principle of least privilege — if a compromised action runs, it only has the minimum access needed. - action-ci.yml: contents: read - pr.yml: contents: read - pre-commit.yml: contents: read - release.yml: contents: read (jobs needing write already have explicit blocks) - security_audit.yml: contents: read, security-events: write - typescript_library.yml: contents: read
50a0ce6 to
7c12be1
Compare
deepfuriya
approved these changes
Mar 30, 2026
chrisqm-dev
approved these changes
Mar 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Resolves all 24 open CodeQL code-scanning alerts for
actions/missing-workflow-permissions.Problem
Without an explicit
permissionsblock, theGITHUB_TOKENin each workflow gets the repository's default permissions, which is typically read/write on all scopes. This violates the principle of least privilege — if a compromised or malicious action runs in any of these workflows, it has more access than necessary.Fix
Added a top-level
permissions: { contents: read }block to each workflow file, restricting the token to the minimum required scope:action-ci.ymlcontents: readpr.ymlcontents: readpre-commit.ymlcontents: readrelease.ymlcontents: readsecurity_audit.ymlcontents: readtypescript_library.ymlcontents: readAll workflows only need read access to check out code and run builds/tests. Jobs in
release.ymlthat require elevated permissions (version-bump,github-release,publish-docker) already have explicit job-levelpermissionsblocks that override the workflow-level default.Alerts Resolved
24 medium-severity CodeQL alerts across 6 workflow files.