Skip to content

Commit

Permalink
Use a template literal rather than concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjurkiewicz committed Sep 24, 2021
1 parent 688cbaf commit 9f42d9c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,12 @@ const main = async () => {
core.setOutput('ignored', ignored.toString())
core.setOutput('total', total.toString())
core.startGroup('Findings');
findings_details.forEach(function(finding_detail,index){
findings_details.forEach(function(finding_detail,index) {
let finding_attributes = [];
finding_detail.attributes.forEach(function(attribute){
finding_attributes.push(attribute.key+"="+attribute.value);
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(" "));
console.log(`${index + 1}. ${finding_detail.name} (${finding_detail.severity}) ${finding_attributes.join(" ")}`);
});
core.endGroup();
console.log('Vulnerabilities found:')
Expand Down

0 comments on commit 9f42d9c

Please sign in to comment.