mirror of
https://github.com/ZeusWPI/ZNS.git
synced 2024-10-29 21:14:27 +01:00
27 lines
463 B
YAML
27 lines
463 B
YAML
|
---
|
||
|
name: Audit Rust dependencies
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- .github/workflows/audit.yml
|
||
|
- '**/Cargo.toml'
|
||
|
- '**/Cargo.lock'
|
||
|
|
||
|
schedule:
|
||
|
- cron: '0 0 * * *'
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
security_audit:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
permissions:
|
||
|
issues: write
|
||
|
checks: write
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: rustsec/audit-check@v1.4.1
|
||
|
with:
|
||
|
token: ${{ secrets.GITHUB_TOKEN }}
|