From 38c2f3894daf81b2a0276706a18d3250c3839eeb Mon Sep 17 00:00:00 2001 From: Peter Kazazes Date: Wed, 27 Aug 2025 17:41:19 -0700 Subject: [PATCH] Fix TH version --- .github/workflows/trufflehog.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/trufflehog.yml b/.github/workflows/trufflehog.yml index 6844f84..da6161d 100644 --- a/.github/workflows/trufflehog.yml +++ b/.github/workflows/trufflehog.yml @@ -1,29 +1,23 @@ name: trufflehog-scan - on: pull_request_target: types: [opened, synchronize, reopened, ready_for_review] - permissions: contents: read - jobs: trufflehog: name: TruffleHog Secret Scan runs-on: ubuntu-latest - steps: - name: Checkout PR HEAD (no credentials) uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} persist-credentials: false - - name: Run TruffleHog on PR diff - uses: trufflesecurity/trufflehog@v3 + uses: trufflesecurity/trufflehog@v3.90.5 with: base: ${{ github.event.pull_request.base.sha }} head: ${{ github.event.pull_request.head.sha }} redact: true fail: true -