2022-09-03 19:38:39 +00:00
|
|
|
name: Audit for RUSTSEC advisories
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: main
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
audit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-09-03 19:41:52 +00:00
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions-rs/audit-check@v1
|
2022-09-03 19:38:39 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|