Skip to content

Commit

Permalink
chore: added dependency review workflow (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswk authored May 30, 2024
1 parent fb689df commit 7167e47
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Dependency review

on:
pull_request:

permissions:
contents: read
pull-requests: write

jobs:
license_review:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Dependency review
uses: actions/dependency-review-action@v4
with:
fail-on-severity: moderate
deny-licenses: GPL-1.0, GPL-2.0, GPL-3.0, LGPL-2.1, LGPL-3.0, MPL-2.0, AGPL-3.0
comment-summary-in-pr: always

0 comments on commit 7167e47

Please sign in to comment.