Commit 61ea14fc authored by Nick Thomas's avatar Nick Thomas

Merge branch 'ci-enable-secret-detection' into 'master'

Enable Secret Detection in CI NO CHANGELOG

See merge request gitlab-org/gitlab-workhorse!654
parents 56d2fcd2 96d59db8
workflow: workflow:
rules: rules: &workflow_rules
# For merge requests, create a pipeline. # For merge requests, create a pipeline.
- if: '$CI_MERGE_REQUEST_IID' - if: '$CI_MERGE_REQUEST_IID'
# For `master` branch, create a pipeline (this includes on schedules, pushes, merges, etc.). # For `master` branch, create a pipeline (this includes on schedules, pushes, merges, etc.).
...@@ -58,11 +58,19 @@ test:release: ...@@ -58,11 +58,19 @@ test:release:
include: include:
- template: Security/SAST.gitlab-ci.yml - template: Security/SAST.gitlab-ci.yml
- template: Security/Dependency-Scanning.gitlab-ci.yml - template: Security/Dependency-Scanning.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml
gosec-sast: gosec-sast:
before_script: before_script:
- apk add make - apk add make
- make install - make install
rules: *workflow_rules
gemnasium-dependency_scanning:
rules: *workflow_rules
secret_detection:
rules: *workflow_rules
code_navigation: code_navigation:
image: golang:latest image: golang:latest
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment