aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Grote2024-02-02 22:39:28 +0100
committerMichael Grote2024-02-02 22:39:28 +0100
commita904997096dd1946c3a96ce083a56fab0ef8135b (patch)
treeb2f24c0d129944092d567406bebf77ee12398782
parent9f9a5e41cc838875ebe3016ded45479fdd40cf0a (diff)
ci: replace shellcheck image
-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
...