homeserver/.woodpecker/lint.yml
Renovate Bot 8c7a893fdc chore(deps): update registry.mgrote.net/allzweckcontainer docker digest to d60e923 (#695)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2024-01-29 13:11:03 +01:00

27 lines
820 B
YAML

---
steps:
gitleaks:
image: zricethezav/gitleaks:v8.18.1@sha256:6945c62ca019ead32bc337ab0c9fd055e98d82961765d38b7ccccc84dae95d0f
commands:
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
when:
event:
exclude:
- tag
shellcheck:
image: registry.mgrote.net/allzweckcontainer@sha256:d60e923a42cd8f066deadc119cdbc64a322c4780c5f7b61d1c87e8e1fc5b3e6c
commands:
- |
find . -type f -not -path './.git/*' -not -path './collections/*' -not -path './friedhof/*' -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
when:
event:
exclude:
- tag
...