ci: replace shellcheck image

This commit is contained in:
Michael Grote 2024-02-02 22:31:14 +01:00
parent 34978f6e59
commit 9838084c76
1 changed files with 1 additions and 5 deletions

View File

@ -19,7 +19,7 @@ steps:
- tag
shellcheck:
image: "registry.mgrote.net/allzweckcontainer:latest" # sonst triggert ein Renovate-Lauf den Neubau, da komt ein neuer Tag, der Renovate triggert... usw.
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
...