Skip to content

Commit afcafb7

Browse files
committed
ci: add security audit workflow
1 parent 33bf3a7 commit afcafb7

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/audit.yml

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

0 commit comments

Comments
 (0)