diff options
| author | Michael Grote | 2024-02-02 22:39:28 +0100 |
|---|---|---|
| committer | Michael Grote | 2024-02-02 22:39:28 +0100 |
| commit | a904997096dd1946c3a96ce083a56fab0ef8135b (patch) | |
| tree | b2f24c0d129944092d567406bebf77ee12398782 /.woodpecker/lint.yml | |
| parent | 9f9a5e41cc838875ebe3016ded45479fdd40cf0a (diff) | |
ci: replace shellcheck image
Diffstat (limited to '.woodpecker/lint.yml')
| -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 ... |