Skip to content

Commit

Permalink
Update dependency-review.yml
Browse files Browse the repository at this point in the history
update test case
  • Loading branch information
elireisman authored Mar 14, 2024
1 parent 17f3cb6 commit 143e285
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ jobs:
id: dr_test
uses: actions/dependency-review-action@84b80e6e84bc7e685a43aa71482021b6cd1426b1
- name: 'print new outputs: vulnerable-changes'
if: always()
run: echo ${{steps.dr_test.outputs.vulnerable-changes}} | jq
if: ${{ !cancelled() }}
run: echo '${{steps.dr_test.outputs.vulnerable-changes}}' | jq
- name: 'print new outputs: dependency-changes'
if: always()
run: echo ${{steps.dr_test.outputs.dependency-changes}} | jq
if: ${{ !cancelled() }}
run: echo '${{steps.dr_test.outputs.dependency-changes}}' | jq
- name: 'print new outputs: invalid-license-changes'
if: always()
run: echo ${{steps.dr_test.outputs.invalid-license-changes}} | jq
if: ${{ !cancelled() }}
run: echo '${{steps.dr_test.outputs.invalid-license-changes}}' | jq
- name: 'print new outputs: comment-content'
if: always()
if: ${{ !cancelled() }}
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
if: ${{ !cancelled() }}
run: echo '${{steps.dr_test.outputs.denied-changes}}' | jq

0 comments on commit 143e285

Please sign in to comment.