Skip to content

Commit f42a7c3

Browse files
Merge pull request #110 from Create-Python-App/fix/51-osv
ci: OSV security scanning workflow (#51)
2 parents 636032d + a384e7a commit f42a7c3

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/osv-scanner.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: OSV Scanner
2+
on:
3+
schedule:
4+
- cron: "17 3 * * 1"
5+
workflow_dispatch:
6+
permissions:
7+
contents: read
8+
security-events: write
9+
jobs:
10+
scan:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: google/osv-scanner/actions/scanner@v2
15+
with:
16+
scan-args: |-
17+
--lockfile=uv.lock

0 commit comments

Comments
 (0)