Skip to content

Commit 7dbb19e

Browse files
fix(github-actions): explicitly allow renovate as a dependency through the license check (#2674)
Explicitly ignore renovate for license check as we have determined an exception for this package. Additionally use hyphen separators instead of underscores based on new documentation.
1 parent be69a70 commit 7dbb19e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Diff for: github-actions/linting/licenses/dependency-review-config.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
vulnerability_check: false
2-
allow_licenses:
1+
vulnerability-check: false
2+
allow-licenses:
33
- '0BSD'
44
- 'Apache-2.0'
55
- 'Artistic-2.0'
@@ -16,3 +16,7 @@ allow_licenses:
1616
- 'MIT-0'
1717
- 'Python-2.0'
1818
- 'Unlicense'
19+
allow-dependencies-licenses:
20+
# Renovate uses the AGPL-3.0 license, which we have determined is okay for our
21+
# usage. We do not however, want to depend on this license in general
22+
- 'pkg:npm/renovate'

0 commit comments

Comments
 (0)