From af96c2f019f85b67e2938a76d50c82ac216a1f2d Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Fri, 2 Feb 2024 22:31:20 +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 a9ffea0..d9a39e4 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -19,7 +19,7 @@ steps: - tag shellcheck: - image: "registry.mgrote.net/allzweckcontainer:1.0.120"@sha256:5ac77318fc5fd4c6b6670cc3e54d3bf0e8639e1b25d00af1a9ed41e7853ad4fb + 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 ...