(maint) Change curl to import the text from a file #3
reviewdog.yml
on: pull_request
runner / shellcheck
8s
runner / hadolint
5s
runner / misspell
16s
Annotations
2 errors and 3 warnings
runner / shellcheck:
entrypoint.sh#L17
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
entrypoint.sh:17:-git config --global --add safe.directory $GITHUB_WORKSPACE
entrypoint.sh:17:+git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
runner / shellcheck:
entrypoint.sh#L39
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
entrypoint.sh:39:-FILES="$(git ls-files | ghglob ${INPUT_PATTERNS})"
entrypoint.sh:39:+FILES="$(git ls-files | ghglob "${INPUT_PATTERNS}")"
|
runner / shellcheck:
entrypoint.sh#L2
[shellcheck] reported by reviewdog 🐶
In POSIX sh, set option pipefail is undefined. [SC3040](https://github.com/koalaman/shellcheck/wiki/SC3040)
Raw Output:
./entrypoint.sh:2:9:warning:In POSIX sh, set option pipefail is undefined. [SC3040](https://github.com/koalaman/shellcheck/wiki/SC3040)
|
runner / shellcheck:
entrypoint.sh#L17
[shellcheck] reported by reviewdog 🐶
Double quote to prevent globbing and word splitting. [SC2086](https://github.com/koalaman/shellcheck/wiki/SC2086)
Raw Output:
./entrypoint.sh:17:42:info:Double quote to prevent globbing and word splitting. [SC2086](https://github.com/koalaman/shellcheck/wiki/SC2086)
|
runner / shellcheck:
entrypoint.sh#L39
[shellcheck] reported by reviewdog 🐶
Double quote to prevent globbing and word splitting. [SC2086](https://github.com/koalaman/shellcheck/wiki/SC2086)
Raw Output:
./entrypoint.sh:39:32:info:Double quote to prevent globbing and word splitting. [SC2086](https://github.com/koalaman/shellcheck/wiki/SC2086)
|