mirror of
https://github.com/hadolint/hadolint-action.git
synced 2024-08-16 10:09:53 +02:00
110e47c1b7
- bump Hadolint version to 2.4.0 - change to debian based image - add common config options - expand integration tests for new options fixes: https://github.com/hadolint/hadolint-action/issues/5 fixes: https://github.com/hadolint/hadolint-action/issues/8 fixes: https://github.com/hadolint/hadolint-action/issues/17 fixes: https://github.com/hadolint/hadolint-action/issues/18 fixes: https://github.com/hadolint/hadolint-action/issues/31
31 lines
969 B
Bash
Executable file
31 lines
969 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# The problem-matcher definition must be present in the repository
|
|
# checkout (outside the Docker container running hadolint). We create
|
|
# a temporary folder and copy problem-matcher.json to it and make it
|
|
# readable.
|
|
TMP_FOLDER=$(mktemp -d -p .)
|
|
cp /problem-matcher.json "${TMP_FOLDER}"
|
|
chmod -R a+rX "${TMP_FOLDER}"
|
|
|
|
# After the run has finished we remove the problem-matcher.json from
|
|
# the repository so we don't leave the checkout dirty. We also remove
|
|
# the matcher so it won't take effect in later steps.
|
|
cleanup() {
|
|
echo "::remove-matcher owner=brpaz/hadolint-action::"
|
|
rm -rf "${TMP_FOLDER}"
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
echo "::add-matcher::${TMP_FOLDER}/problem-matcher.json"
|
|
|
|
if [ -n "$HADOLINT_CONFIG" ]; then
|
|
HADOLINT_CONFIG="-c ${HADOLINT_CONFIG}"
|
|
fi
|
|
|
|
for i in $HADOLINT_IGNORE; do
|
|
HADOLINT_IGNORE_CMDLINE="${HADOLINT_IGNORE_CMDLINE} --ignore=${i}"
|
|
done
|
|
|
|
# shellcheck disable=SC2086
|
|
hadolint $HADOLINT_IGNORE_CMDLINE $HADOLINT_CONFIG "$@"
|