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 ff3fedd commit 9f6eaf3Copy full SHA for 9f6eaf3
action.yml
@@ -101,15 +101,15 @@ runs:
101
if [[ '${{ inputs.reporter }}' == 'sarif' ]]
102
then
103
report_file=${GITHUB_WORKSPACE}/report.sarif
104
- DIKTAT_ARGS+=('--output' report_file)
105
elif [[ '${{ inputs.reporter }}' == 'checkstyle' ]]
106
107
report_file=${GITHUB_WORKSPACE}/checkstyle-report.xml
108
109
else
110
echo "`reporter` should be set to `sarif` or `checkstyle`"
111
exit 1
112
fi
+ DIKTAT_ARGS+=('--output' '${report_file}')
+
113
if [[ '${{ inputs.debug }}' == 'true' ]]
114
115
DIKTAT_ARGS+=('--log-level' 'DEBUG')
0 commit comments