From 28f79354fb06e4c26c88a86889d4633e53c9be5b Mon Sep 17 00:00:00 2001 From: Ryan Butler Date: Tue, 19 Nov 2024 15:10:49 -0500 Subject: [PATCH] build: make cargo deny checks in ci more clear (#293) --- .github/workflows/rust-ci.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust-ci.yaml b/.github/workflows/rust-ci.yaml index 920c27f..e964ee4 100644 --- a/.github/workflows/rust-ci.yaml +++ b/.github/workflows/rust-ci.yaml @@ -221,7 +221,7 @@ jobs: retention-days: 14 cargo-deny: - name: Check licensing + name: Cargo Deny runs-on: ubuntu-22.04 steps: - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3 @@ -242,7 +242,12 @@ jobs: uname -a nix develop -c env - - name: Check licenses and security advisories + - name: Check licenses run: | nix develop -c \ - cargo deny check + cargo deny check licenses + + - name: Check security advisories + run: | + nix develop -c \ + cargo deny check advisories