Skip to content

Commit

Permalink
Update dependency-review.yml
Browse files Browse the repository at this point in the history
try output through jq
  • Loading branch information
elireisman authored Mar 13, 2024
1 parent d694fb5 commit f78f2b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
uses: actions/dependency-review-action@84b80e6e84bc7e685a43aa71482021b6cd1426b1
- name: 'print new outputs: vulnerable-changes'
if: failure()
run: echo "${{steps.dr_test.outputs.vulnerable-changes}}"
run: echo ${{steps.dr_test.outputs.vulnerable-changes}} | jq
- name: 'print new outputs: dependency-changes'
if: failure()
run: echo "${{steps.dr_test.outputs.dependency-changes}}"
run: echo ${{steps.dr_test.outputs.dependency-changes}} | jq
- name: 'print new outputs: invalid-license-changes'
if: failure()
run: echo "${{steps.dr_test.outputs.invalid-license-changes}}"
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}}"
run: echo ${{steps.dr_test.outputs.comment-content}} | jq

0 comments on commit f78f2b8

Please sign in to comment.