Skip to content

Commit c70413b

Browse files
authored
Add workflow for scheduled cargo-audit (#328)
1 parent f8ec6bd commit c70413b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/security.yml

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

0 commit comments

Comments
 (0)