-
Notifications
You must be signed in to change notification settings - Fork 63
47 lines (37 loc) · 1.01 KB
/
security.yml
File metadata and controls
47 lines (37 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Security Audit
on:
schedule:
# Run security audit daily at 2 AM UTC
- cron: '0 2 * * *'
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
security-audit:
name: Security Audit
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run security audit
run: npm audit --audit-level moderate || true
- name: Check for known vulnerabilities
run: npm audit --audit-level high
dependency-review:
name: Dependency Review
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout Repository
uses: actions/checkout@v5
- name: Dependency Review
uses: actions/dependency-review-action@v4