Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tzurielweisberg committed Sep 19, 2024
1 parent 46c1ba5 commit 9ce47cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ inputs:
description: "Log level (trace, debug, info, warn, error, fatal) (default: info)"
required: false
default: "info"
exit-code:
exit_code:
description: "exit code when leaks have been encountered (default 1)"
required: false
default: 1
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ INPUT_REDACT=$(default 'true' 'false' "${INPUT_REDACT}" 'true')
INPUT_FAIL=$(default 'true' 'false' "${INPUT_FAIL}" 'true')
INPUT_VERBOSE=$(default 'true' 'false' "${INPUT_VERBOSE}" 'true')
INPUT_LOG_LEVEL=$(default 'info' "${INPUT_LOG_LEVEL}" "${INPUT_LOG_LEVEL}" 'true')
INPUT_EXIT_CODE=$(default 1 0 "${INPUT_EXIT_CODE}" 'true')
INPUT_EXIT_CODE=$(default 1 "${INPUT_EXIT_CODE}" "${INPUT_EXIT_CODE}" 'true')

echo "----------------------------------"
echo "INPUT PARAMETERS"
Expand Down

0 comments on commit 9ce47cb

Please sign in to comment.