ISSUE #229 - try to manually run cargo audit

This commit is contained in:
Herbert Wolverson
2023-02-01 19:40:08 +00:00
parent d14c4239b9
commit 5a1a3db5be

View File

@@ -28,7 +28,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install tools
run: pushd src/rust; cargo install cargo-outdated; popd
run: pushd src/rust; cargo install cargo-outdated; cargo install cargo-audit; popd
- name: Check for outdated dependencies
run: cd src/rust; cargo outdated -w --color=always --root-deps-only --exit-code 1
- name: Audit for CVEs
run: cd src/rust; cargo audit -c always