upgrade to autometrics v1.0.0
#278
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
# "Audit your Rust dependencies using cargo audit and the RustSec Advisory DB." | |
--- | |
name: "Audit Dependencies" | |
on: | |
push: | |
paths: | |
# Run if workflow changes | |
- ".github/workflows/audit.yml" | |
# Run on changed dependencies | |
- "**/Cargo.toml" | |
- "**/Cargo.lock" | |
# Run if the configuration file changes | |
- "**/audit.toml" | |
# Rerun periodicly to pick up new advisories | |
schedule: | |
- cron: "0 0 * * *" | |
# Run manually | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions-rust-lang/audit@v1 | |
name: Audit Rust Dependencies |