Skip to content

Commit

Permalink
Add dependency review workflow (#1207)
Browse files Browse the repository at this point in the history
Co-authored-by: reuvenp <reuvenp@altair-semi.com>
  • Loading branch information
reuvenperetz and reuvenp authored Sep 11, 2024
1 parent 95f65ea commit b7dae6f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/dependency-review-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

allow-licenses:
- Apache-2.0
- MIT
- BSD-3-Clause
- BSD-2-Clause
- MPL-2.0
- HPND
- PSF-2.0

fail-on-severity: low
18 changes: 18 additions & 0 deletions .github/workflows/dependency_review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 'Dependency Review'

on: [pull_request]

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4

- name: Dependency Review
uses: actions/dependency-review-action@v4
with:
config-file: './.github/dependency-review-config.yml'

0 comments on commit b7dae6f

Please sign in to comment.