allzweckcontainer/.woodpecker/lint.yml

35 lines
915 B
YAML
Raw Normal View History

2023-11-03 19:10:12 +01:00
---
steps:
gitleaks:
image: zricethezav/gitleaks:v8.18.2
2023-11-03 19:10:12 +01:00
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
event:
exclude:
- tag
2024-01-29 11:58:25 +01:00
2023-11-03 19:10:12 +01:00
hadolint:
image: pipelinecomponents/hadolint:0.26.0
2023-11-03 19:10:12 +01:00
commands:
- hadolint Dockerfile
when:
event:
exclude:
- tag
2024-01-29 11:58:25 +01:00
shellcheck:
2024-02-02 22:17:42 +01:00
image: "registry.mgrote.net/allzweckcontainer:latest" # sonst triggert ein Renovate-Lauf den Neubau, da komt ein neuer Tag, der Renovate triggert... usw. commands:
2024-01-29 12:02:01 +01:00
- |
2024-01-29 12:12:01 +01:00
find . -type f -not -path './.git/*' -not -path './collections/*' -exec file {} \; | while IFS= read -r line; do
if echo "$line" | grep -q "shell script"; then
file_path=$(echo "$line" | awk -F':' '{print $1}')
shellcheck "$file_path"
fi
done
2024-01-29 11:58:25 +01:00
when:
event:
exclude:
- tag
...