Skip to content

Commit

Permalink
ci: add dependency review check
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtro committed Jul 23, 2024
1 parent efd2762 commit 174a1ab
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Dependency Review'
on:
pull_request:
branches: ['master']

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Dependency Review
uses: actions/dependency-review-action@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4
with:
# Possible values: "critical", "high", "moderate", "low"
fail-on-severity: high

0 comments on commit 174a1ab

Please sign in to comment.