aboutsummaryrefslogtreecommitdiffstats
path: root/.woodpecker/lint.yml
diff options
context:
space:
mode:
authorMichael Grote2024-02-02 22:38:40 +0100
committerMichael Grote2024-02-02 22:38:40 +0100
commit202e3be6929f58ea086f764939af573e075fb24f (patch)
tree1a27ad191d77e762999bc0eb508d5ae68ba5fd13 /.woodpecker/lint.yml
parent9fa656c2fa2f56db8bd8bc559e57067a0a5d2018 (diff)
ci: replace shellcheck image
Diffstat (limited to '.woodpecker/lint.yml')
-rw-r--r--.woodpecker/lint.yml6
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
...