Sessions 5-7a: 955 tests, deployment ready
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
name: Dependency Security Scan
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 12 * * 1' # Weekly Monday noon UTC
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
python-audit:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
- run: pip install pip-audit
|
||||
- run: pip-audit -r src/services/python/requirements.txt
|
||||
|
||||
node-audit:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
- run: npm audit --production
|
||||
Reference in New Issue
Block a user