-
Notifications
You must be signed in to change notification settings - Fork 139
Add Dependency Review GitHub Action #1031
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
59c5b55
Add Dependency Review GitHub Action
devin-ai-integration[bot] d0dc8dc
Set persist-credentials: false on checkout step
devin-ai-integration[bot] 0e70a11
Add workflow_dispatch trigger to dependency review
devin-ai-integration[bot] a0cd70f
Add license enforcement via allow-licenses
devin-ai-integration[bot] 7fa5e90
Wire workflow_dispatch with base-ref/head-ref inputs
devin-ai-integration[bot] 7cfe978
Add fail-on-severity: high to dependency review workflow
devin-ai-integration[bot] 6856949
Expand license allowlist to handle compound SPDX expressions
devin-ai-integration[bot] db1a4cf
Remove deny-licenses (cannot use both allow and deny)
devin-ai-integration[bot] 9efb44e
Block GPL, exempt specific packages with compound licenses
devin-ai-integration[bot] cffd4cd
Organize allow-licenses into commented sections
devin-ai-integration[bot] 984be5a
Move license config to separate file with categorized comments
devin-ai-integration[bot] 2d4c2c0
Add license exceptions for new uv.lock dependencies
devin-ai-integration[bot] 2d4b73f
Trim unused license exceptions (no Python deps in this dbt package)
devin-ai-integration[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # Permissive licenses | ||
| allow-licenses: | ||
| - MIT | ||
| - MIT-0 | ||
| - Apache-2.0 | ||
| - BSD-2-Clause | ||
| - BSD-2-Clause-Views | ||
| - BSD-3-Clause | ||
| - ISC | ||
| - PSF-2.0 | ||
| - Python-2.0 | ||
| - CNRI-Python | ||
| - 0BSD | ||
| - BlueOak-1.0.0 | ||
| - CC0-1.0 | ||
| - CC-BY-3.0 | ||
| - CC-BY-4.0 | ||
| - Unlicense | ||
| - NCSA | ||
| - ZPL-2.1 | ||
| - HPND-Markus-Kuhn | ||
| - Artistic-2.0 | ||
| - Artistic-1.0-Perl | ||
| # Permissive licenses without official SPDX IDs (ScanCode identifiers) | ||
| - LicenseRef-scancode-public-domain | ||
| - LicenseRef-scancode-public-domain-disclaimer | ||
| - LicenseRef-scancode-protobuf | ||
| # Weak copyleft (LGPL/MPL) — safe as libraries in commercial software | ||
| - MPL-2.0 | ||
| - LGPL-2.1-only | ||
| - LGPL-2.1-or-later | ||
| - LGPL-3.0-only | ||
| - LGPL-3.0-or-later | ||
| - LGPL-3.0 | ||
|
|
||
| fail-on-severity: high |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| name: Dependency Review | ||
| on: | ||
| pull_request: | ||
| workflow_dispatch: | ||
| inputs: | ||
| base-ref: | ||
| description: Base git ref for comparison (e.g. a tag or commit SHA) | ||
| required: true | ||
| head-ref: | ||
| description: Head git ref for comparison (defaults to HEAD) | ||
| required: false | ||
| default: HEAD | ||
|
|
||
| permissions: {} | ||
|
|
||
| jobs: | ||
| dependency-review: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: false | ||
| - name: Dependency Review | ||
| uses: actions/dependency-review-action@v4 | ||
|
haritamar marked this conversation as resolved.
|
||
| with: | ||
| base-ref: ${{ inputs.base-ref || '' }} | ||
| head-ref: ${{ inputs.head-ref || '' }} | ||
| config-file: ./.github/dependency-review-config.yml | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.