2023-11-03 19:21:11 +01:00
|
|
|
---
|
|
|
|
steps:
|
|
|
|
gitleaks:
|
2024-01-26 22:51:23 +01:00
|
|
|
image: zricethezav/gitleaks:v8.18.0
|
2023-11-03 19:21:11 +01:00
|
|
|
commands:
|
|
|
|
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|
2023-11-03 19:32:03 +01:00
|
|
|
|
2023-11-03 19:21:11 +01:00
|
|
|
hadolint:
|
2024-01-26 23:28:12 +01:00
|
|
|
image: pipelinecomponents/hadolint:0.25.9
|
2023-11-03 19:21:11 +01:00
|
|
|
commands:
|
|
|
|
- hadolint Dockerfile
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|
2023-11-03 19:32:03 +01:00
|
|
|
|
2023-11-09 09:22:41 +01:00
|
|
|
shellcheck:
|
|
|
|
image: koalaman/shellcheck-alpine:stable
|
|
|
|
commands:
|
|
|
|
- "find . -name *.sh -exec shellcheck {} +"
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|