Skip to content

Commit 2f4aa13

Browse files
committed
fix(github-actions): explicitly allow renovate as a dependency through the license check
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 2707802 commit 2f4aa13

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

github-actions/linting/licenses/dependency-review-config.yml

Lines changed: 6 additions & 2 deletions
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)