mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-23 20:53:07 +00:00
16 lines
333 B
YAML
16 lines
333 B
YAML
|
name: cargo-audit check
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 0 * * *"
|
||
|
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 }}
|