Skip to content

Commit 9ed7f1c

Browse files
Evalirmikelodder7
authored andcommitted
fix(ci): exclude rusoto & ethers-providers from cargo-deny (foundry-rs#5703)
* fix(ci): exclude rusoto/ethers-providers from deny * chore: add deny.toml to paths
1 parent 2575fed commit 9ed7f1c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/deny.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: deny
33
on:
44
push:
55
branches: [master]
6-
paths: [Cargo.lock]
6+
paths: [Cargo.lock, deny.toml]
77
pull_request:
88
branches: [master]
9-
paths: [Cargo.lock]
9+
paths: [Cargo.lock, deny.toml]
1010

1111
env:
1212
CARGO_TERM_COLOR: always

deny.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Temporarily exclude rusoto and ethers-providers from bans since we've yet to transition to the
2+
# Rust AWS SDK.
3+
exclude = ["rusoto_core", "rusoto_kms", "rusoto_credential", "ethers-providers"]
4+
15
# This section is considered when running `cargo deny check advisories`
26
# More documentation for the advisories section can be found here:
37
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html

0 commit comments

Comments
 (0)