mirror of
https://github.com/Drop-OSS/dropbreak.git
synced 2026-02-04 06:51:19 +01:00
18 lines
455 B
YAML
18 lines
455 B
YAML
# Run cargo audit once every week and create issues for vulnerabilities found
|
|
name: Security Audit
|
|
on:
|
|
schedule:
|
|
# Run once every week (Sunday at midnight)
|
|
- cron: '0 0 * * 0'
|
|
jobs:
|
|
audit:
|
|
name: Cargo Audit
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v1
|
|
- name: Run cargo audit
|
|
uses: actions-rs/audit-check@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|