Skip to content

Commit

Permalink
Update dependency-review.yml
Browse files Browse the repository at this point in the history
don't expect JSON in comment output!
  • Loading branch information
elireisman authored Mar 13, 2024
1 parent f78f2b8 commit 17f3cb6
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,18 @@ jobs:
id: dr_test
uses: actions/dependency-review-action@84b80e6e84bc7e685a43aa71482021b6cd1426b1
- name: 'print new outputs: vulnerable-changes'
if: failure()
if: always()
run: echo ${{steps.dr_test.outputs.vulnerable-changes}} | jq
- name: 'print new outputs: dependency-changes'
if: failure()
if: always()
run: echo ${{steps.dr_test.outputs.dependency-changes}} | jq
- name: 'print new outputs: invalid-license-changes'
if: failure()
if: always()
run: echo ${{steps.dr_test.outputs.invalid-license-changes}} | jq
- name: 'print new outputs: comment-content'
if: failure()
run: echo ${{steps.dr_test.outputs.comment-content}} | jq
if: always()
run: echo "${{steps.dr_test.outputs.comment-content}}"
- name: "print new outputs: denied-changes"
if: always()
run: echo ${{steps.dr_test.outputs.denied-changes}} | jq

0 comments on commit 17f3cb6

Please sign in to comment.