Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
chore(ci): deny wildcards (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Sep 17, 2023
1 parent ee18cde commit e4ba249
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 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]
merge_group:

env:
Expand All @@ -23,4 +23,4 @@ jobs:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check all
command: check all
4 changes: 2 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ notice = "warn"
# Lint level for when multiple versions of the same crate are detected
multiple-versions = "warn"
# Lint level for when a crate version requirement is `*`
wildcards = "allow"
wildcards = "deny"
highlight = "all"
# List of crates to deny
deny = [
Expand Down Expand Up @@ -85,4 +85,4 @@ unknown-registry = "warn"
# Lint level for what to happen when a crate from a git repository that is not
# in the allow list is encountered
unknown-git = "deny"
allow-git = []
allow-git = []

0 comments on commit e4ba249

Please sign in to comment.