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.
This commit is contained in:
intrigeri 2022-02-13 12:54:27 +00:00
parent 7d69e55074
commit 9240e12e73

View file

@ -132,7 +132,6 @@ shellcheck:
include: include:
- template: SAST.gitlab-ci.yml - template: SAST.gitlab-ci.yml
- template: Secret-Detection.gitlab-ci.yml - template: Secret-Detection.gitlab-ci.yml
- template: Dependency-Scanning.gitlab-ci.yml
variables: variables:
SAST_EXCLUDED_ANALYZERS: "spotbugs" SAST_EXCLUDED_ANALYZERS: "spotbugs"