Skip to content

Commit

Permalink
feat: format findings based on review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Karaffa authored and alexjurkiewicz committed Sep 24, 2021
1 parent ba3da31 commit 688cbaf
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,15 @@ const main = async () => {
core.setOutput('undefined', indeterminate.toString())
core.setOutput('ignored', ignored.toString())
core.setOutput('total', total.toString())
console.log('Findings:');
console.log(JSON.stringify(findings_details))
core.startGroup('Findings');
findings_details.forEach(function(finding_detail,index){
let finding_attributes = [];
finding_detail.attributes.forEach(function(attribute){
finding_attributes.push(attribute.key+"="+attribute.value);
});
console.log(index+1 +'. '+finding_detail.name+' ('+finding_detail.severity+') '+finding_attributes.join(" "));
});
core.endGroup();
console.log('Vulnerabilities found:')
console.log(`${critical.toString().padStart(3, ' ')} Critical ${getCount('critical', ignoredCounts)}`)
console.log(`${high.toString().padStart(3, ' ')} High ${getCount('high', ignoredCounts)}`)
Expand Down

0 comments on commit 688cbaf

Please sign in to comment.