From bcb75a21dc58e1f5d592af1b18d70944605a7aa5 Mon Sep 17 00:00:00 2001 From: htrgouvea Date: Wed, 24 Jan 2024 12:18:39 -0300 Subject: [PATCH] remove workflow --- .github/workflows/secret-scanning.yml | 39 --------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/secret-scanning.yml diff --git a/.github/workflows/secret-scanning.yml b/.github/workflows/secret-scanning.yml deleted file mode 100644 index d76ec7f..0000000 --- a/.github/workflows/secret-scanning.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Secret Scanning - -on: - push: - branches: - - main - pull_request: - -permissions: - contents: read - id-token: write - issues: write - pull-requests: write - -jobs: - TruffleHog: - runs-on: ubuntu-latest - defaults: - run: - shell: bash - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Secret Scanning - TruffleHog - id: trufflehog - uses: trufflesecurity/trufflehog@main - continue-on-error: true - with: - path: ./ - base: "${{ github.event.repository.default_branch }}" - head: HEAD - extra_args: --debug - - - name: Scan Results Status - if: steps.trufflehog.outcome == 'failure' - run: exit 1 \ No newline at end of file