feat: replace cargo audit with cargo deny #1
This file contains 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
# This workflow will run `cargo-deny`, checking for dependency issues related to licensing, known vulnerabilities, and more. | |
# The configuration file is in [deny.toml](../../deny.toml). | |
name: Cargo Deny | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
merge_group: | |
jobs: | |
cargo-deny: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: EmbarkStudios/cargo-deny-action@v2 |