From a2b5444a459e5fdd671eb9f41d1e29f23eb18be9 Mon Sep 17 00:00:00 2001 From: Luc Georges Date: Mon, 10 Jun 2024 10:24:28 +0200 Subject: [PATCH] feat(ci): add trufflehog secrets detection (#1259) * feat(ci): add trufflehog secrets detection * linting --------- Co-authored-by: Nathan Sarrazin --- .github/workflows/trufflehog.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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 00000000000..aec02190a25 --- /dev/null +++ b/.github/workflows/trufflehog.yml @@ -0,0 +1,21 @@ +on: + push: + +name: Secret Leaks + +permissions: + contents: read + id-token: write + issues: write + pull-requests: write + +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