Skip to content
Snippets Groups Projects

Enable security dashboards

2 files
+ 27
0
Compare changes
  • Side-by-side
  • Inline

Files

@@ -20,6 +20,12 @@ variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
include:
- template: Security/SAST.gitlab-ci.yml
- template: Security/Dependency-Scanning.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml
# Prepare image to run ci on
trigger_prepare:
stage: prepare
@@ -45,6 +51,22 @@ run_pylint:
- tox -e pylint
allow_failure: true
sast:
variables:
SAST_EXCLUDED_ANALYZERS: brakeman, kubesec, nodejs-scan, phpcs-security-audit,
pmd-apex, sobelow, spotbugs
stage: test
dependency_scanning:
# override default before_script, job won't have Python available
before_script:
- uname
secret_detection:
# override default before_script, job won't have Python available
before_script:
- uname
# Basic setup for all Python versions for which we don't have a base image
.run_unit_test_version_base:
before_script:
Loading