Skip to content

Commit

Permalink
Add dependency review workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ringler committed Nov 22, 2023
1 parent 41bac9f commit bdf0ed7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/dependency-review.yaml
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@v3
with:
# Add more licenses as required. Do not add copy-left licenses or licenses incompatible with MIT.
allow-licenses: MIT, MIT-0, Apache-2.0, BSD-2-Clause, BSD-3-Clause

0 comments on commit bdf0ed7

Please sign in to comment.