From bc51c910ae746fd066f8597e1bf7db2703948aee Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Fri, 27 Mar 2026 12:47:52 +0100 Subject: [PATCH] Rename TruffleHog exclude paths file to plain text The --exclude-paths flag expects a plain text file with one regex per line, not a YAML file. Signed-off-by: Bryan Frimin --- .github/workflows/secrets.yaml | 2 +- .trufflehog.yml => .trufflehog-exclude | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename .trufflehog.yml => .trufflehog-exclude (100%) diff --git a/.github/workflows/secrets.yaml b/.github/workflows/secrets.yaml index c0c8d0836..e06105027 100644 --- a/.github/workflows/secrets.yaml +++ b/.github/workflows/secrets.yaml @@ -19,4 +19,4 @@ jobs: submodules: recursive - uses: "trufflesecurity/trufflehog@b78fbfd8eb982f4802e09a265fb2bc37b3040975" # main with: - extra_args: "--results=verified,unknown --exclude-paths=.trufflehog.yml" + extra_args: "--results=verified,unknown --exclude-paths=.trufflehog-exclude" diff --git a/.trufflehog.yml b/.trufflehog-exclude similarity index 100% rename from .trufflehog.yml rename to .trufflehog-exclude