We recently upgraded to Ultimate, and I’m testing out the scanning capabilities. I’ve been testing out the SAST features, building out an app with known issues to generate findings. I’ve added container scanning, and see in the job log that vulnerabilities are found, and the report artifact is generated, but the findings do not show up in the Dashboard or the Vulnerability report.
include:
- template: Security/SAST.gitlab-ci.yml
- template: Security/License-Scanning.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml
- template: Security/Dependency-Scanning.gitlab-ci.yml
- template: Docker.gitlab-ci.yml
- template: Security/Container-Scanning.gitlab-ci.yml
stages:
- build
- test
- deploy
variables:
SECURE_LOG_LEVEL: 'debug'
container_scanning:
variables:
CS_DEFAULT_BRANCH_IMAGE: $CI_REGISTRY_IMAGE/$CI_DEFAULT_BRANCH:$CI_COMMIT_SHA
deploy-prod:
stage: deploy
script:
- echo "This job deploys something from the $CI_COMMIT_BRANCH branch."