diff --git a/.woodpecker.yml b/.woodpecker.yml index 0fabaa3..aeae861 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -14,7 +14,8 @@ steps: group: lint shellcheck: - image: koalaman/shellcheck-alpine + image: registry.gitlab.com/pipeline-components/shellcheck + group: lint commands: - - find . -name .git -type d -prune -o -type f -name \*.sh -print0 | xargs -0 -r -n1 shellcheck + - find . -name .git -type d -prune -o -type f -name \*.sh -print0 | xargs -0 -r -n1 shellcheck -e SC2015 ...