Bump bufbuild/buf-setup-action in the actions-deps group (#1446) #1060
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
name: Cargo-Deny Checker | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
cargo-deny: | |
runs-on: warp-ubuntu-latest-x64-16x | |
strategy: | |
matrix: | |
checks: | |
- advisories | |
- bans | |
- licenses | |
- sources | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: EmbarkStudios/cargo-deny-action@v2 | |
with: | |
command: check ${{ matrix.checks }} | |
# Prevent sudden announcement of a new advisory from failing CI | |
continue-on-error: ${{ matrix.checks == 'advisories' }} |