File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -439,15 +439,22 @@ jobs:
439
439
# check that PRs do not introduce vulnerabilities in vendor dependencies
440
440
- name : ' Vendor Vulnerability Scanning'
441
441
run : |
442
- docker run -v $PWD/:/github -v $HOME:$HOME otp \
443
- "/github/.github/scripts/otp-compliance.es sbom osv-scan"
442
+ docker run -v $PWD/:/github otp \
443
+ "/github/.github/scripts/otp-compliance.es sbom osv-scan && echo \"foo=$(find /github -name osv-scanner.json)\""
444
+
445
+
446
+ - name : Find osv-scanner.json
447
+ run : |
448
+ OSV=$(find . -name osv-scanner.json)
449
+ echo "all=${OSV}" >> $GITHUB_OUTPUT
450
+ cat $GITHUB_OUTPUT
444
451
445
452
# Upload the deps
446
453
- name : " upload osv-scanner deps"
447
454
uses :
actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # ratchet:actions/[email protected]
448
455
with :
449
456
name : converted-OSV-Scanner-deps
450
- path : $PWD /osv-scanner.json
457
+ path : /home/runner /osv-scanner.json
451
458
retention-days : 2
452
459
453
460
scan-pr :
You can’t perform that action at this time.
0 commit comments