Potential fix for code scanning alert no. 15: Workflow does not contain permissions#1638
Merged
Potential fix for code scanning alert no. 15: Workflow does not contain permissions#1638
Conversation
…in permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
0add22a to
d30ebad
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1638 +/- ##
=========================================
Coverage 47.27% 47.27%
- Complexity 9192 9193 +1
=========================================
Files 886 886
Lines 87107 87107
Branches 11013 11013
=========================================
+ Hits 41176 41182 +6
+ Misses 42814 42808 -6
Partials 3117 3117 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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/equinor/neqsim/security/code-scanning/15
To fix the problem, you should explicitly set the minimal
permissionsthat the workflow requires. The safest default iscontents: read, which allows the workflow to read repository contents but not modify them, create releases, or write to issues/pull-requests. This fits the example and matches least-privilege principles. If in future the workflow needs broader permissions, you can expand them as needed. You should add thepermissions: contents: readblock at the root level (just aftername:and before/afteron:or abovejobs:) of.github/workflows/maven_publish.yml.Suggested fixes powered by Copilot Autofix. Review carefully before merging.