Skip to content

Commit c5c6ffa

Browse files
committed
try omitting apache
1 parent b7e7bb9 commit c5c6ffa

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -910,14 +910,15 @@ jobs:
910910
id: review
911911
uses: actions/dependency-review-action@v4
912912
with:
913-
allow-licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, CC0-1.0, ISC #, MIT, MIT-0, MPL-2.0
913+
#allow-licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, CC0-1.0, ISC, MIT, MIT-0, MPL-2.0
914+
allow-licenses: BSD-2-Clause, BSD-3-Clause, CC0-1.0, ISC, MIT, MIT-0, MPL-2.0
914915
license-check: true
915916
vulnerability-check: false
916917
- name: 'Report'
917918
# make sure this step runs even if the previous failed
918919
if: ${{ failure() && steps.review.conclusion == 'failure' }}
919920
shell: bash
920921
env: # store comment HTML data in an environment variable
921-
COMMENT: ${{ steps.review.outputs.comment-content }}
922-
run: | # do something with the comment:
923-
echo "$COMMENT"
922+
VULNERABLE_CHANGES: ${{ steps.review.outputs.invalid-license-changes }}
923+
run: |
924+
echo "$VULNERABLE_CHANGES" | jq

0 commit comments

Comments
 (0)