e5262b4b71
safety scan requires interactive account login, breaking CI. pip-audit provides equivalent vulnerability scanning without auth.
37 lines
822 B
YAML
37 lines
822 B
YAML
name: Security
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
schedule:
|
|
- cron: '0 9 * * 1' # Weekly on Monday
|
|
|
|
jobs:
|
|
secrets-scan:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Detect secrets
|
|
uses: trufflesecurity/trufflehog@main
|
|
with:
|
|
path: ./
|
|
|
|
dependency-audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
- name: NPM Audit
|
|
run: cd frontend && npm audit --audit-level=high
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- name: Pip audit
|
|
run: pip install pip-audit && pip-audit -r backend/requirements.txt
|