You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by no...@apache.org on 2020/12/29 12:31:48 UTC

[buildstream] 01/04: .gitlab-ci.yml: Use gitlab's built-in Dependency Scanning

This is an automated email from the ASF dual-hosted git repository.

not-in-ldap pushed a commit to branch jjardon/security-scanner
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 1da6f79036952097692b6dd081981e589ea58ff5
Author: Javier Jardón <jj...@gnome.org>
AuthorDate: Sat Nov 23 14:03:51 2019 +0900

    .gitlab-ci.yml: Use gitlab's built-in Dependency Scanning
    
    See https://docs.gitlab.com/ee/user/application_security/dependency_scanning/
---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1458d4d..821d643 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,6 @@
 include:
   - template: Code-Quality.gitlab-ci.yml
+  - template: Dependency-Scanning.gitlab-ci.yml
   - template: License-Management.gitlab-ci.yml
   - template: SAST.gitlab-ci.yml
 
@@ -16,6 +17,7 @@ stages:
   - publish
 
 variables:
+  DS_DISABLE_DIND: "true"
   SAST_DISABLE_DIND: "true"
   SAST_GOSEC_LEVEL: 2
   PYTEST_ADDOPTS: "--color=yes"