Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deny.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: deny
on:
push:
branches: [master]
paths: [Cargo.lock]
paths: [Cargo.lock, deny.toml]
pull_request:
branches: [master]
paths: [Cargo.lock]
paths: [Cargo.lock, deny.toml]

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 4 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Temporarily exclude rusoto and ethers-providers from bans since we've yet to transition to the
# Rust AWS SDK.
exclude = ["rusoto_core", "rusoto_kms", "rusoto_credential", "ethers-providers"]

# This section is considered when running `cargo deny check advisories`
# More documentation for the advisories section can be found here:
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
Expand Down