Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bryankaraffa authored and alexjurkiewicz committed Sep 24, 2021
1 parent 64ecd45 commit d10ba53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ const main = async () => {
const indeterminate = counts.UNDEFINED || 0
const ignored = ignoredFindings.length
const total = critical + high + medium + low + informational + indeterminate
core.setOutput('findings_details', critical.toString())
core.setOutput('critical', findings_details.toString())
core.setOutput('findings_details', findings_details.toString())
core.setOutput('critical', critical.toString())
core.setOutput('high', high.toString())
core.setOutput('medium', medium.toString())
core.setOutput('low', low.toString())
Expand Down

0 comments on commit d10ba53

Please sign in to comment.