Dependency security #43
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: Dependency security | |
| on: | |
| pull_request: | |
| push: | |
| branches: ["**"] | |
| schedule: | |
| # Find newly published advisories even when the lockfile has not changed. | |
| - cron: "23 3 * * *" | |
| workflow_dispatch: | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| jobs: | |
| dependencies: | |
| name: ${{ matrix.tool }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - tool: cargo-audit | |
| version: 0.22.2 | |
| command: cargo audit --file Cargo.lock | |
| - tool: cargo-deny | |
| version: 0.20.2 | |
| command: cargo deny --locked check | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: dtolnay/rust-toolchain@6bed0761d98439e5a578e2877258200ad565ba87 # stable | |
| - name: Install ${{ matrix.tool }} | |
| run: cargo install --locked ${{ matrix.tool }} --version ${{ matrix.version }} | |
| - name: Check dependencies | |
| run: ${{ matrix.command }} |