Skip to content

Commit 2e62ba5

Browse files
committed
actions: add security audit workflow
1 parent ba1afb0 commit 2e62ba5

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/audit.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Security audit
2+
on:
3+
schedule:
4+
- cron: "0 0 * * *"
5+
jobs:
6+
audit:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v6
10+
- uses: rustsec/audit-check@v2
11+
with:
12+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)