Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore latest rustsec issue #1101

Merged
merged 6 commits into from
Aug 29, 2023
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: 3 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ ci-license = "license-template --template .license_template"
#
# - RUSTSEC-2021-0065: https://rustsec.org/advisories/RUSTSEC-2021-0065
# - anymap is unmaintained 🤷‍♀️
ci-audit = "audit --file Cargo.lock --deny warnings --ignore RUSTSEC-2021-0065"
# - RUSTSEC-2023-0052: https://rustsec.org/advisories/RUSTSEC-2023-0052
abdulmth marked this conversation as resolved.
Show resolved Hide resolved
# - TODO: waiting for fix in dependency
ci-audit = "audit --file Cargo.lock --deny warnings --ignore RUSTSEC-2021-0065 --ignore RUSTSEC-2023-0052"
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches: [develop, production]
paths:
- ".cargo/config.toml"
- ".github/workflows/lint.yml"
- ".github/actions/**"
- "**.rs" # Include all rust files
Expand All @@ -12,6 +13,7 @@ on:
pull_request:
branches: [develop, production]
paths:
- ".cargo/config.toml"
- ".github/workflows/lint.yml"
- ".github/actions/**"
- "**.rs" # Include all rust files
Expand Down
Loading
Loading