Skip to content

Commit 2395e74

Browse files
committed
Merge branch 'devnet-ready' into fix/validate_limit_txs
2 parents abec477 + 86fdc36 commit 2395e74

File tree

19 files changed

+1863
-994
lines changed

19 files changed

+1863
-994
lines changed

.github/workflows/cargo-audit.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- labeled
66
- unlabeled
77
- synchronize
8+
- opened
89
concurrency:
910
group: cargo-audit-${{ github.ref }}
1011
cancel-in-progress: true
@@ -24,10 +25,19 @@ jobs:
2425
sudo apt-get install -y clang curl libssl-dev llvm libudev-dev protobuf-compiler
2526
2627
- name: Install cargo-audit
27-
run: cargo install --version 0.20.1 --force cargo-audit
28+
run: cargo install --force cargo-audit
2829

2930
- name: Display cargo-audit --version
3031
run: cargo audit --version
3132

3233
- name: cargo audit
33-
run: cargo audit --ignore RUSTSEC-2024-0336 # rustls issue; wait for upstream to resolve this
34+
run: |
35+
cargo audit --ignore RUSTSEC-2024-0336 \
36+
--ignore RUSTSEC-2021-0127 \
37+
--ignore RUSTSEC-2024-0370 \
38+
--ignore RUSTSEC-2022-0080 \
39+
--ignore RUSTSEC-2022-0061 \
40+
--ignore RUSTSEC-2020-0168 \
41+
--ignore RUSTSEC-2024-0384 \
42+
--ignore RUSTSEC-2024-0388 \
43+
--ignore RUSTSEC-2024-0421

0 commit comments

Comments
 (0)