Security audit #2878
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security audit | |
on: | |
pull_request: | |
paths: | |
- 'Cargo.toml' | |
- '**/Cargo.toml' | |
- 'Cargo.lock' | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
security_audit: | |
name: Rustsec Audit | |
runs-on: ubuntu-latest | |
permissions: | |
# Allow the action to post about found problems | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/audit@v1 |