Skip to content

Commit 4858ae7

Browse files
authored
Bumping packages - cve scanning (#63)
Signed-off-by: Daniel Guns <danbguns@gmail.com>
1 parent 7cfd2be commit 4858ae7

8 files changed

Lines changed: 98 additions & 141 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ jobs:
4545
- name: Run clippy
4646
run: cargo clippy --lib --tests -- -D warnings -A clippy::too_many_arguments -A clippy::items-after-test-module -A clippy::type-complexity -A clippy::should-implement-trait -A renamed_and_removed_lints -A clippy::collapsible-if -A clippy::len-zero -A clippy::assertions-on-constants -A dead-code
4747

48+
- name: Install cargo-audit
49+
run: |
50+
if ! command -v cargo-audit &> /dev/null; then
51+
cargo install cargo-audit --locked
52+
fi
53+
54+
- name: Run cargo-audit (CVE scan)
55+
run: cargo audit --ignore RUSTSEC-2024-0436
56+
4857
- name: Run tests
4958
run: cargo test --lib --tests
5059

0 commit comments

Comments
 (0)