Skip to content

Commit

Permalink
ci: dependency review action (#138)
Browse files Browse the repository at this point in the history
* ci: dependency review action

* remove branch name trigger
  • Loading branch information
mdtro committed Jul 24, 2024
1 parent 808a698 commit 65591f3
Showing 1 changed file with 18 additions and 0 deletions.
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@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 65591f3

Please sign in to comment.