2020-10-29 20:02:30 +00:00
|
|
|
name: Security audit
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2021-07-02 12:55:38 +00:00
|
|
|
- cron: '0 0 1 * *'
|
2020-10-29 20:02:30 +00:00
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '**/Cargo.toml'
|
|
|
|
- '**/Cargo.lock'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
audit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/audit-check@issue-104
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|