2020-11-01 01:40:50 +01:00
|
|
|
name: cargo-audit check
|
|
|
|
on:
|
|
|
|
schedule:
|
2020-11-03 03:03:00 +01:00
|
|
|
- cron: "0 5 * * *"
|
2020-11-01 01:40:50 +01:00
|
|
|
jobs:
|
|
|
|
audit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/install@master
|
|
|
|
with:
|
|
|
|
crate: cargo-audit
|
|
|
|
- uses: actions-rs/audit-check@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|