Skip to content

Commit bf7718e

Browse files
committed
ci: add security audit workflow
1 parent 289c2a2 commit bf7718e

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
11+
with:
12+
persist-credentials: false
13+
- uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998 # v2
14+
with:
15+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)