We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e985b1 commit 81655a7Copy full SHA for 81655a7
action.yml
@@ -100,10 +100,10 @@ runs:
100
DIKTAT_ARGS=('--config' '${{ inputs.config }}' '--reporter' '${{ inputs.reporter }}')
101
if [[ '${{ inputs.reporter }}' == 'sarif' ]]
102
then
103
- DIKTAT_ARGS+=('--output' '${GITHUB_WORKSPACE}/report.sarif')
+ DIKTAT_ARGS+=('--output' "${GITHUB_WORKSPACE}/report.sarif")
104
elif [[ '${{ inputs.reporter }}' == 'checkstyle' ]]
105
106
- DIKTAT_ARGS+=('--output' '${GITHUB_WORKSPACE}/checkstyle-report.xml')
+ DIKTAT_ARGS+=('--output' "${GITHUB_WORKSPACE}/checkstyle-report.xml")
107
else
108
echo "`reporter` should be set to `sarif` or `checkstyle`"
109
exit 1
0 commit comments