Skip to content

Commit 9a0c174

Browse files
committed
Add weekly cargo-audit CI run
1 parent 3f533f4 commit 9a0c174

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/audit.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Security audit
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '0 10 * * 1' # every monday at 10:00 UTC
6+
permissions:
7+
issues: write
8+
checks: write
9+
jobs:
10+
audit:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: rustsec/audit-check@v1.4.1
15+
with:
16+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)