Potential fix for code scanning alert no. 2: Workflow does not contain permissions - #68
Merged
Merged
Conversation
…n permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Rui Xia (harrysummer)
marked this pull request as ready for review
December 5, 2025 20:20
There was a problem hiding this comment.
Pull request overview
This PR addresses a GitHub code scanning alert by adding explicit permissions to the release workflow and includes an unrelated dependency version pin. The primary change restricts the GITHUB_TOKEN to read-only access following the principle of least privilege.
- Added
permissions: contents: readto the release workflow to address security alert - Pinned pycocotools to version 2.0.8 (unrelated to workflow security fix)
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/release.yml | Added permissions block to restrict GITHUB_TOKEN to read-only access for security |
| setup.cfg | Pinned pycocotools version to 2.0.8 with explanatory comment (unrelated to PR purpose) |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Julia Gong (juliagongms)
approved these changes
Dec 5, 2025
Julia Gong (juliagongms)
left a comment
Contributor
There was a problem hiding this comment.
Left one minor comment, but looks good otherwise. Thanks!
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.
Potential fix for https://github.com/microsoft/visionmetrics/security/code-scanning/2
The best way to fix the problem is to explicitly restrict the GITHUB_TOKEN permissions by adding a
permissionsblock to the workflow, following the principle of least privilege. In this workflow, the minimum required permission is to allow reading repository contents (e.g., for actions/checkout to read source code). This can be achieved by adding the following at the root level, just below the workflow name and aboveon::This applies the restriction to all jobs unless a job-specific permissions block overrides it. No other permissions are needed for the workflow's steps. Only one region of the file (.github/workflows/release.yml, near the top) needs to be edited to insert this block.
Suggested fixes powered by Copilot Autofix. Review carefully before merging.