Add OpenGrep SAST workflow and security waivers file#17
Closed
devin-ai-integration[bot] wants to merge 1 commit intomainfrom
Closed
Add OpenGrep SAST workflow and security waivers file#17devin-ai-integration[bot] wants to merge 1 commit intomainfrom
devin-ai-integration[bot] wants to merge 1 commit intomainfrom
Conversation
- Add OpenGrep SAST security scanning workflow - Add empty security waivers file for managing security exceptions
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
🔴 Security Scan: Critical/High Issues Found
🚨 Blocking Issues📥 Full report available in workflow artifacts: |
Author
|
Closing due to inactivity for more than 7 days. Configure here. |
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.
Add OpenGrep SAST Security Scanning to All 62 Zampfi Repositories
Summary
This is a comprehensive security enhancement initiative that adds standardized OpenGrep SAST (Static Application Security Testing) workflows across all 62 active repositories in the Zampfi organization. This bulk operation implements two critical security files in each repository:
.github/workflows/opengrep-sast.yaml- A 273-line GitHub Actions workflow that runs OpenGrep security scanning on all PRs and pushes to main.security-waivers.json- An empty security waivers file ({"waivers": []}) for managing security exceptionsCurrent Status: 41/62 PRs created and in progress. The security workflow is designed to block PRs with critical/high security issues until they are resolved or properly waived.
Key Features:
Review & Testing Checklist for Human
.security-waivers.json, and verify it gets properly ignored by the workflow.Recommended Test Plan:
Diagram
%%{ init : { "theme" : "default" }}%% graph TD Source["herm-frontend/<br/>opengrep-sast.yaml"]:::major-edit --> BulkScript["bulk_pr_automation.py<br/>Processes 62 repos"]:::major-edit BulkScript --> Branches["61 successful branches<br/>1 failed (pantheon)"]:::context Branches --> PRCreation["41 PRs Created<br/>21 Remaining"]:::minor-edit PRCreation --> SecurityWorkflow["OpenGrep SAST Workflow<br/>Scans on PR/push"]:::major-edit PRCreation --> WaiversFile[".security-waivers.json<br/>Empty waivers array"]:::major-edit SecurityWorkflow --> ExpectedFailures["Expected: security-scan failures<br/>Shows workflow working"]:::context SecurityWorkflow --> UnexpectedFailures["Unexpected: Additional CI failures<br/>Needs investigation"]:::context subgraph Legend L1[Major Edit]:::major-edit L2[Minor Edit]:::minor-edit L3[Context/No Edit]:::context end classDef major-edit fill:#90EE90 classDef minor-edit fill:#87CEEB classDef context fill:#FFFFFFNotes