From 517a1e999ba235a74e20a0d50e75454840b117a3 Mon Sep 17 00:00:00 2001
From: Erick Hitter <git-contrib@ethitter.com>
Date: Sat, 16 Jul 2022 16:21:06 -0700
Subject: [PATCH] Enable additional scanners

---
 plugins/templates/gitlab-tools.yml | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/plugins/templates/gitlab-tools.yml b/plugins/templates/gitlab-tools.yml
index 9f190a1..75251e8 100644
--- a/plugins/templates/gitlab-tools.yml
+++ b/plugins/templates/gitlab-tools.yml
@@ -1,11 +1,21 @@
 include:
-  - template: Security/SAST.gitlab-ci.yml
   - template: Security/Dependency-Scanning.gitlab-ci.yml
+  - template: Security/License-Scanning.gitlab-ci.yml
+  - template: Security/SAST.gitlab-ci.yml
+  - template: Security/Secret-Detection.gitlab-ci.yml
 
 dependency_scanning:
   before_script: echo ""
   stage: security
 
+license_scanning:
+  before_script: echo ""
+  stage: security
+
 sast:
   before_script: echo ""
   stage: security
+
+secret_detection:
+  before_script: echo ""
+  stage: security
-- 
GitLab