Skip to content

Commit

Permalink
Merge pull request #461 from mimmi20/updates
Browse files Browse the repository at this point in the history
enable summary comment for dependency review
  • Loading branch information
mimmi20 committed Jun 1, 2023
2 parents 8d7d475 + 5528c95 commit 55f928a
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@
#
# Source repository: https://github.com/actions/dependency-review-action
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
name: 'Dependency Review'
on: [pull_request]

name: "Dependency Review"

on:
- pull_request

permissions:
contents: read
pull-requests: write

jobs:
dependency-review:
runs-on: ubuntu-latest
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
Expand All @@ -22,5 +26,9 @@ jobs:
lfs: false
persist-credentials: false

- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
- name: "Dependency Review"
uses: "actions/dependency-review-action@v3"
with:
"license-check": true
"vulnerability-check": true
"comment-summary-in-pr": true

0 comments on commit 55f928a

Please sign in to comment.