From 9240e12e739a429f471b457705143e48640cc09a Mon Sep 17 00:00:00 2001 From: intrigeri Date: Sun, 13 Feb 2022 12:54:27 +0000 Subject: [PATCH] CI: disable Dependency Scanning According to https://docs.gitlab.com/ee/user/application_security/dependency_scanning/, "dependency scanning lets you know if your application uses an external (open source) library that is known to be vulnerable". AppArmor is not the kind of project that benefits from it: we don't link statically against our dependencies, nor bundle them into released artifacts. --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2f8b068fb..707f8c9ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -132,7 +132,6 @@ shellcheck: include: - template: SAST.gitlab-ci.yml - template: Secret-Detection.gitlab-ci.yml - - template: Dependency-Scanning.gitlab-ci.yml variables: SAST_EXCLUDED_ANALYZERS: "spotbugs"