-
Notifications
You must be signed in to change notification settings - Fork 0
PCD-5136: SOC2 file addition #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other comments (3)
- .github/workflows/security-scan.yml (47-51) There's a mismatch in the bandit scan configuration. The scan uses `--severity-level medium` (which includes medium and high), but the output processing only checks for HIGH severity issues. Consider either changing the scan to `--severity-level high` or updating the output processing to include medium severity issues as well.
- .github/workflows/security-scan.yml (5-7) The workflow contains hardcoded branch names that appear to be personal development branches (`private/harsh/soc2-scan`, `private/soc2`). These should be removed before merging to master to avoid unnecessary workflow runs.
- .github/workflows/security-scan.yml (18-18) The workflow is using actions/checkout@v3 in multiple places. Consider upgrading to actions/checkout@v4 for improved security and features.
💡 To request another review, post a new comment with "/windsurf-review".
.github/workflows/lint.yml
Outdated
| body: | | ||
| ## ⚠️ Ruff Lint Issues Found | ||
| See `.ruff_output.txt` for full details. | ||
| branch: auto/ruff-lint-issues | ||
| base: atherton |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'branch' and 'base' parameters are incorrectly indented as part of the PR body text. They should be at the same level as other parameters.
| body: | | |
| ## ⚠️ Ruff Lint Issues Found | |
| See `.ruff_output.txt` for full details. | |
| branch: auto/ruff-lint-issues | |
| base: atherton | |
| body: | | |
| ## ⚠️ Ruff Lint Issues Found | |
| See `.ruff_output.txt` for full details. | |
| branch: auto/ruff-lint-issues | |
| base: atherton |
.github/workflows/lint.yml
Outdated
| add-paths: | | ||
| ruff_output.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'add-paths' parameter has incorrect formatting. The file path should be properly indented.
| add-paths: | | |
| ruff_output.txt | |
| add-paths: | | |
| ruff_output.txt |
.github/workflows/lint.yml
Outdated
| ## ⚠️ Ruff Lint Issues Found | ||
| See `.ruff_output.txt` for full details. | ||
| branch: auto/ruff-lint-issues | ||
| base: atherton |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The workflow is configured to create auto-fix PRs against the 'atherton' branch, but this PR is targeting 'master'. Consider aligning these to ensure auto-fixes target the correct branch.
No description provided.