Skip to content

Commit

Permalink
Add dependency review action
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Oct 22, 2022
1 parent 3d51433 commit 5a84ec6
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:
paths:
- '.github/workflows/**'
- '.tool-versions'

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
- name: 'Dependency Review'
uses: actions/dependency-review-action@v2
with:
# https://spdx.org/licenses/
allow-licenses: MIT, BSD-3-Clause, BSD-2-Clause, 0BSD, Unlicense, ISC, Apache-2.0

0 comments on commit 5a84ec6

Please sign in to comment.