@cyber-agents/github-action
v2.0.1
Published
GitHub Action for automated security scanning with SARIF output and PR comments
Readme
Cybersecurity Agents — GitHub Action
Automated security scanning in your CI/CD pipeline.
Usage
name: Security Scan
on: [push, pull_request]
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cybersecurity-agents/github-action@v1
with:
path: '.'
format: 'sarif'
severity: 'medium'
fail-on-severity: 'high'Inputs
| Input | Default | Description |
|-------|---------|-------------|
| path | . | Path to scan |
| skills | `` | Comma-separated skills (empty = all) |
| severity | medium | Minimum severity threshold |
| format | sarif | Output format (json/sarif/md/html) |
| fail-on-severity | high | Fail workflow above this severity |
Outputs
| Output | Description |
|--------|-------------|
| result | Path to scan result file |
| findings-count | Total findings count |
