chore(deps): bump thiserror from 2.0.19 to 2.0.20 in the rust-dependencies group #2
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| schedule: | |
| - cron: "17 3 * * 1" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| dependency-audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Install pinned RustSec auditor | |
| run: cargo install cargo-audit --version 0.22.2 --locked | |
| - name: Reject known vulnerable or yanked dependencies | |
| run: cargo audit --deny warnings |