Hello 👋
In #89, there was an update of index.ts that removed the following method:
function writeReport(reportData: string) {
fs.writeFileSync("./report.json", reportData);
core.setOutput("scanReport", "./report.json");
}
But action.yml is still referencing scanReport as an output, so now it returns an empty string.
I saw that the action is outputing results in scan-result.json so I'm putting directly the filename in my workflows as a workaround.
Is scanReport expected to be removed from the action or was it just forgotten when refactoring?
Thanks 🙂
Hello 👋
In #89, there was an update of
index.tsthat removed the following method:But
action.ymlis still referencingscanReportas an output, so now it returns an empty string.I saw that the action is outputing results in
scan-result.jsonso I'm putting directly the filename in my workflows as a workaround.Is
scanReportexpected to be removed from the action or was it just forgotten when refactoring?Thanks 🙂