Code Security Analysis Workflow
The Code Security Analysis workflow examines source code files for security vulnerabilities using AI-powered static analysis. This workflow is ideal for identifying common security issues across multiple programming languages.Overview
- Workflow ID:
code
- Primary Use Case: Static analysis of application source code
- Output: SARIF and HTML security reports
Quick Start
Workflow-Specific Options
The code workflow supports several specialized options:--max-concurrent-triagers <NUMBER>
Controls how many vulnerability assessments run in parallel during the triaging phase.
Default: 3
Performance Tuning
For optimal performance with the code workflow:Common Use Cases
1. Pre-Commit Analysis
2. CI/CD Integration
3. Security Code Review
4. Language-Specific Analysis
GitHub Actions
Use the official Fraim GitHub Action:Available workflow_args
Argument | Type | Default | Description |
---|---|---|---|
confidence | integer (1-10) | 7 | Minimum confidence threshold for filtering findings |
chunk-size | integer | 500 | Number of lines per chunk |
limit | integer | null | Limit the number of files to scan |
globs | array of strings | null | File patterns to include (uses workflow defaults if not provided) |
max-concurrent-chunks | integer | 5 | Maximum number of chunks to process concurrently |
max-concurrent-triagers | integer | 3 | Maximum number of triager requests per chunk to run concurrently |