mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-30 13:01:12 +00:00
16 lines
351 B
YAML
16 lines
351 B
YAML
|
name: Security audit
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '0 0 * * *'
|
||
|
push:
|
||
|
paths:
|
||
|
- '**/Cargo.toml'
|
||
|
- '**/Cargo.lock'
|
||
|
jobs:
|
||
|
security_audit:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: taiki-e/install-action@cargo-deny
|
||
|
- name: Scan for vulnerabilities
|
||
|
run: cargo deny check advisories
|