hoc/.github/workflows/audit.yml
Valentin Brandl b07c732475
All checks were successful
continuous-integration/drone/push Build is passing
Remove usage of outdated actions
Closes #506
2023-06-13 09:59:33 +02:00

22 lines
394 B
YAML

name: Security audit
on:
schedule:
- cron: '0 1 * * *'
push:
branches:
- master
pull_request:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
- ".cargo/audit.toml"
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rustsec/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}