Skip to content

Commit 7c5879b

Browse files
chore(ci): audit scan check fix (#777)
* chore(ci): install cargo 0.16.2+ with CVSS 4.0 support * run on pull request * run on workflow file change * use force back * ignore ruint
1 parent 4988dbc commit 7c5879b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/rust_dependency_audit.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ on:
55
paths:
66
- '**/Cargo.toml'
77
- '**/Cargo.lock'
8+
- '.github/workflows/rust_dependency_audit.yml'
9+
pull_request:
10+
paths:
11+
- '**/Cargo.toml'
12+
- '**/Cargo.lock'
13+
- '.github/workflows/rust_dependency_audit.yml'
814

915
env:
1016
CARGO_TERM_COLOR: always
@@ -37,5 +43,5 @@ jobs:
3743

3844
- name: Run audit-check action
3945
run: |
40-
which cargo-deny || cargo install cargo-deny --locked --force
46+
cargo install cargo-deny --locked --force
4147
cargo deny check

deny.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ yanked = "deny"
1818
ignore = [
1919
"RUSTSEC-2024-0436", # paste - no longer maintained
2020
"RUSTSEC-2023-0071", # https://github.com/NethermindEth/Catalyst/issues/735
21+
"RUSTSEC-2025-0137", # ruint - no patched version available yet
2122
]
2223

2324
[licenses]

0 commit comments

Comments
 (0)