Dependency audit #87
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 audit | |
| on: | |
| schedule: | |
| - cron: "0 0 * * 1" # midnight on Monday | |
| workflow_dispatch: | |
| jobs: | |
| security-audit: | |
| name: Dependency audit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v5 | |
| - name: Audit dependencies | |
| uses: EmbarkStudios/cargo-deny-action@v2 |