From 8b4344c17bc180fda3b140167f861c4c4f5ed1e5 Mon Sep 17 00:00:00 2001 From: John Johansen Date: Thu, 17 Feb 2022 23:53:16 -0800 Subject: [PATCH] gitlab: testing: temporarily disable secret-detect Unfortunately secret detection is failing with fatal: error in object: unshallow sha1 and blocking merge requests. Unfortuntely all suggested work arounds from https://gitlab.com/gitlab-org/gitlab/-/issues/351976 failed to work. Signed-off-by: John Johansen --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a1a5a4319..c28ddce5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -131,7 +131,11 @@ shellcheck: include: - template: SAST.gitlab-ci.yml - - template: Secret-Detection.gitlab-ci.yml +# Temporarily disable secret-detection because it is failing with +# fatal: error in object: unshallow sha1 +# and none of the suggested work-arounds work +# see https://gitlab.com/gitlab-org/gitlab/-/issues/351976 +# - template: Secret-Detection.gitlab-ci.yml variables: SAST_EXCLUDED_ANALYZERS: "eslint,flawfinder,semgrep,spotbugs"