From 9f804af29db1273f6580cc8d68b3f7a808f91ee6 Mon Sep 17 00:00:00 2001 From: Luc Georges Date: Mon, 10 Jun 2024 22:03:54 +0200 Subject: feat(ci): add trufflehog secrets detection (#2262) * feat(ci): add trufflehog secrets detection * fix(ci): remove unnecessary permissions --- .github/workflows/trufflehog.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/trufflehog.yml (limited to '.github') diff --git a/.github/workflows/trufflehog.yml b/.github/workflows/trufflehog.yml new file mode 100644 index 00000000..9cbbf680 --- /dev/null +++ b/.github/workflows/trufflehog.yml @@ -0,0 +1,15 @@ +on: + push: + +name: Secret Leaks + +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 -- cgit v1.2.3