We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19b59cb commit f78d4b8Copy full SHA for f78d4b8
docker-entrypoint.sh
@@ -1,4 +1,4 @@
1
-#!/bin/sh
+#!/bin/bash
2
set -o pipefail
3
4
# Set Lacework credentials as inline scanner environment variable
@@ -53,7 +53,7 @@ export SCANNER_EXIT_CODE=$?
53
if [ "${INPUT_RESULTS_IN_GITHUB_SUMMARY}" = "true" ]; then
54
echo "### Security Scan" >> $GITHUB_STEP_SUMMARY
55
echo "<pre>" >> $GITHUB_STEP_SUMMARY
56
- cat results.stdout >> $GITHUB_STEP_SUMMARY
+ printf '%s' "$(<results.stdout)" >> $GITHUB_STEP_SUMMARY
57
echo "</pre>" >> $GITHUB_STEP_SUMMARY
58
fi
59
0 commit comments