Initial WatchLink scaffold
This commit is contained in:
32
.gitea/workflows/security-scan.yml
Normal file
32
.gitea/workflows/security-scan.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
name: Security Scan
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "17 3 * * 1"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
scan:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "22"
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Audit dependencies
|
||||
run: npm audit --omit=dev --audit-level=high
|
||||
|
||||
- name: Scan secret-prone files
|
||||
run: |
|
||||
! find . -type f \( -name ".env" -o -name "*.pem" -o -name "*.key" \) -not -path "./node_modules/*" | grep .
|
||||
|
||||
- name: Scan instruction-injection markers
|
||||
run: |
|
||||
! grep -RInE "ignore previous instructions|system prompt|developer message" -- . --exclude-dir=.git --exclude-dir=node_modules --exclude-dir=.next
|
||||
Reference in New Issue
Block a user