fix: upgrade cargo deny #649
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: Audit | |
| on: | |
| push: | |
| schedule: | |
| # At 8:30 every day | |
| - cron: 30 8 * * * | |
| jobs: | |
| audit: | |
| name: Audit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # The interest of audit-check is to create automatically a GitHub issue in case of audit failures | |
| - uses: actions-rs/audit-check@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: EmbarkStudios/cargo-deny-action@v2 | |
| with: | |
| rust-version: 1.87.0 |