Skip to content

docs: add screenshot-to-module pipeline walkthrough to README #3

docs: add screenshot-to-module pipeline walkthrough to README

docs: add screenshot-to-module pipeline walkthrough to README #3

Workflow file for this run

# .github/workflows/security-scan.yml

Check failure on line 1 in .github/workflows/security-scan.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/security-scan.yml

Invalid workflow file

reusable workflows should be referenced at the top-level `jobs.*.uses' key, not within steps
name: Security Scan
on:
pull_request:
push:
branches: [main]
jobs:
gitleaks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
semgrep:
runs-on: ubuntu-latest
container: returntocorp/semgrep
steps:
- uses: actions/checkout@v4
- run: semgrep ci --config p/owasp-top-ten --config p/typescript --config p/python --json --output semgrep.json
- uses: actions/upload-artifact@v4
with:
name: semgrep-report
path: semgrep.json
osv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v1