Skip to content

Commit 5ff9905

Browse files
author
Vasilii Novikov
committed
Add cargo-audit CI
1 parent f64a3ca commit 5ff9905

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/cargo-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: '4 0 * * Sat' # 4:00 each Saturday
5+
jobs:
6+
audit:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: actions-rs/audit-check@v1
11+
with:
12+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)