Skip to content

Commit 029158d

Browse files
committed
ci: add scheduled self scan workflow
1 parent b160b03 commit 029158d

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/self-scan.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Self Scan
2+
3+
on:
4+
schedule:
5+
- cron: '0 3 * * 1' # Every Monday at UTC 3:00 AM
6+
workflow_dispatch:
7+
8+
jobs:
9+
self-scan:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v6
13+
14+
- uses: OWASP/cve-lite-cli@v1
15+
with:
16+
verbose: "true"
17+
fail-on: high

0 commit comments

Comments
 (0)