14 lines
314 B
YAML
14 lines
314 B
YAML
# https://docs.gitlab.com/user/application_security/sast/
|
|
include:
|
|
- template: Jobs/Secret-Detection.latest.gitlab-ci.yml
|
|
|
|
secret_detection:
|
|
stage: test
|
|
|
|
# SAST tools only support x64
|
|
tags:
|
|
- amd64
|
|
|
|
# Don't wait, since this has no dependencies.
|
|
# https://docs.gitlab.com/ci/yaml/#needs
|
|
needs: []
|