Skip to content
Snippets Groups Projects
Commit 2d1ffc66 authored by Klaas Kliffen's avatar Klaas Kliffen :satellite:
Browse files

Merge branch 'enable-security-features' into 'main'

Enable security dashboard features

See merge request !24
parents 81437c6a e95d37c3
No related branches found
No related tags found
1 merge request!24Enable security dashboard features
Pipeline #60057 passed with warnings
Pipeline: Python Package

#60058

    ...@@ -15,6 +15,11 @@ default: ...@@ -15,6 +15,11 @@ default:
    - cd my_awesome_app - cd my_awesome_app
    - git init - git init
    # Override semgrep-sast before script
    sast:
    before_script:
    - python --version # For debugging
    # Override unit test before script # Override unit test before script
    .run_unit_test_version_base: .run_unit_test_version_base:
    before_script: before_script:
    ......
    ...@@ -21,6 +21,10 @@ stages: ...@@ -21,6 +21,10 @@ stages:
    variables: variables:
    PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" 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 # Prepare image to run ci on
    trigger_prepare: trigger_prepare:
    ...@@ -52,6 +56,22 @@ run_pylint: ...@@ -52,6 +56,22 @@ run_pylint:
    # script: # script:
    # - echo "build fortran/c/cpp extension source code" # - echo "build fortran/c/cpp extension source code"
    sast:
    variables:
    SAST_EXCLUDED_ANALYZERS: brakeman, flawfinder, kubesec, nodejs-scan, phpcs-security-audit,
    pmd-apex, security-code-scan, 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 # Basic setup for all Python versions for which we don't have a base image
    .run_unit_test_version_base: .run_unit_test_version_base:
    before_script: before_script:
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment