Closed eugenPtr closed 9 months ago
Hi! thanks for the report @eugenPtr . My suspicion is that, as you're using fail-on: medium
and continue-on-error: true
, the Slither step is failing early and thus not producing the stdout variable. Exporting the Slither stdout into steps.slither.outputs.stdout
is the very last thing done by the action on a successful run.
Would you mind trying with fail-on: none
and removing continue-on-error: true
and reporting back?
@elopez thank you so much for the prompt response. That did the trick! Thank you ser!
Hi, I am trying to create a comment on the PR with the report in Markdown format.
My issue is that
${{ steps.slither.outputs.stdout }}
is always empty. Checking the workflow output, I can see the report being generated normally in Markdown format but I cannot use it in subsequent steps.Here is my yaml file
Here is the log of the "Check output" step
The body is also empty when console.logged in the following step.
Any clues what could be causing the issue here?