mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-30 06:32:05 -08:00
chore(ci): add cargo-deny to the CI for supply-chain protection.
This commit is contained in:
17
.github/workflows/supply-chain.yml
vendored
Normal file
17
.github/workflows/supply-chain.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Supply-Chain
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
cargo-deny:
|
||||
name: Deny dependencies with vulnerabilities or incompatible licenses
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: EmbarkStudios/cargo-deny-action@v2
|
||||
Reference in New Issue
Block a user