18 lines
351 B
YAML
18 lines
351 B
YAML
---
|
|
steps:
|
|
gitleaks:
|
|
image: zricethezav/gitleaks:latest
|
|
commands:
|
|
- gitleaks detect --no-git --verbose --source $CI_WORKSPACE
|
|
when:
|
|
event:
|
|
exclude:
|
|
- tag
|
|
hadolint:
|
|
image: hadolint/hadolint:latest-debian
|
|
commands:
|
|
- hadolint Dockerfile
|
|
when:
|
|
event:
|
|
exclude:
|
|
- tag
|