From a06598678c490d61f7d374db0633d4aace1fdbd4 Mon Sep 17 00:00:00 2001 From: Luc Georges Date: Mon, 10 Jun 2024 14:25:43 +0200 Subject: [PATCH] feat(ci): add trufflehog secrets detection (#254) --- .github/workflows/trufflehog.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/trufflehog.yml diff --git a/.github/workflows/trufflehog.yml b/.github/workflows/trufflehog.yml new file mode 100644 index 00000000..b406d43b --- /dev/null +++ b/.github/workflows/trufflehog.yml @@ -0,0 +1,18 @@ +on: + push: + +name: Secret Leaks + +permissions: + contents: read + +jobs: + trufflehog: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Secret Scanning + uses: trufflesecurity/trufflehog@main