From cb67bad1cabfe67243ae3d7e7015ab1eef90887a Mon Sep 17 00:00:00 2001 From: geoffg-sentry <165922362+geoffg-sentry@users.noreply.github.com> Date: Fri, 24 Jan 2025 10:55:02 -0500 Subject: [PATCH] Remove datadog exclusion Per INC-874 and INFO-643, we're removing the datadog token exclusion from trufflehog scanning --- .github/workflows/secret-scan.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/secret-scan.yml b/.github/workflows/secret-scan.yml index 108e8f4..9ed89ae 100644 --- a/.github/workflows/secret-scan.yml +++ b/.github/workflows/secret-scan.yml @@ -57,9 +57,9 @@ jobs: id: scan run: | if [ -e .secret_scan_ignore ]; then - trufflehog git file://. --only-verified --github-actions --fail --exclude-paths=.secret_scan_ignore --exclude-detectors="datadogtoken" + trufflehog git file://. --only-verified --github-actions --fail --exclude-paths=.secret_scan_ignore" else - trufflehog git file://. --only-verified --github-actions --fail --exclude-detectors="datadogtoken" + trufflehog git file://. --only-verified --github-actions --fail" fi - name: Send Alert to Panther id: alert