Bump reactive-graph-behaviour-model-api from 31eff9b to 61f9f97
#211
Workflow file for this run
This file contains hidden or 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: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - "plugins/**/Cargo.toml" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - ".github/workflows/audit.yml" | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - "plugins/**/Cargo.toml" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - ".github/workflows/audit.yml" | |
| schedule: | |
| - cron: "0 12 * * 0" | |
| # Run manually | |
| workflow_dispatch: | |
| jobs: | |
| audit: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: VCS Checkout | |
| uses: actions/checkout@v4 | |
| - name: Audit Rust Dependencies | |
| uses: rustsec/audit-check@v2.0.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |