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 9fb75aa commit 6e1ababCopy full SHA for 6e1abab
action.yml
@@ -120,9 +120,9 @@ runs:
120
IFS=$'\n'
121
INPUT_PATHS=(${{ inputs.input-paths }})
122
{ diktat --no-download-progress --verbose "${DIKTAT_ARGS[@]}" "${INPUT_PATHS[@]}" | tee diktat.log; } && exit_code=$? || exit_code=$?
123
- echo "::set-output name=summary-line::$(tail -n1 diktat.log 2>/dev/null)"
+ echo "summary-line=$(tail -n1 diktat.log 2>/dev/null)" >>$GITHUB_OUTPUT
124
rm -f diktat.log
125
- echo "::set-output name=exit-code::${exit_code}"
+ echo "exit-code=${exit_code}" >>$GITHUB_OUTPUT
126
env:
127
GITHUB_TOKEN: ${{ github.token }}
128
shell: bash
0 commit comments