From e88a6d1dcd61e7cd2fb0f00a8a2802add594432b Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Fri, 2 Feb 2024 22:40:27 +0100 Subject: [PATCH] ci: replace shellcheck image --- .woodpecker/lint.yml | 6 +----- 1 file changed, 1 insertion(+), 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 ...