diff options
| author | Michael Grote | 2024-02-02 22:38:40 +0100 |
|---|---|---|
| committer | Michael Grote | 2024-02-02 22:38:40 +0100 |
| commit | 202e3be6929f58ea086f764939af573e075fb24f (patch) | |
| tree | 1a27ad191d77e762999bc0eb508d5ae68ba5fd13 | |
| parent | 9fa656c2fa2f56db8bd8bc559e57067a0a5d2018 (diff) | |
ci: replace shellcheck image
| -rw-r--r-- | .woodpecker/lint.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml index 5405918..d9a39e4 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -19,7 +19,7 @@ steps: - tag shellcheck: - image: "registry.mgrote.net/allzweckcontainer:v1.0.131" + image: "koalaman/shellcheck-alpine:latest" commands: - | find . -type f -not -path './.git/*' -not -path './collections/*' -exec file {} \; | while IFS= read -r line; do @@ -28,8 +28,4 @@ steps: shellcheck "$file_path" fi done - when: - event: - exclude: - - tag ... |