forked from microsoft/windows-drivers-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,12 @@ jobs: | |
- name: Dependency Review | ||
uses: actions/dependency-review-action@v4 | ||
with: | ||
# AND combinations are currently bugged and must be listed separately: https://github.com/actions/dependency-review-action/issues/263 | ||
# OR combinations are currently bugged and must be listed separately: https://github.com/actions/dependency-review-action/issues/670 | ||
allow-licenses: MIT, Apache-2.0, BSD-3-Clause, ISC, Unicode-DFS-2016, (MIT OR Apache-2.0) AND Unicode-DFS-2016, Unlicense OR MIT | ||
# anstyle is licensed as (MIT OR Apache-2.0), but the Github api fails to detect it: https://github.com/rust-cli/anstyle/tree/main/crates/anstyle | ||
allow-dependencies-licenses: 'pkg:cargo/[email protected]' | ||
allow-licenses: >- | ||
MIT, | ||
Apache-2.0, | ||
BSD-3-Clause, | ||
ISC, | ||
Unicode-DFS-2016 | ||
comment-summary-in-pr: on-failure | ||
# Explicit refs required for merge_group and push triggers: | ||
# https://github.com/actions/dependency-review-action/issues/456 | ||
|