diff --git a/.github/workflows/git-guardian.yaml b/.github/workflows/git-guardian.yaml deleted file mode 100644 index 2da8779587bfe..0000000000000 --- a/.github/workflows/git-guardian.yaml +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: "GitGuardian" - -on: [push, pull_request] - -jobs: - scan: - name: GitGuardian - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - with: - fetch-depth: 0 - - - name: Scan - uses: GitGuardian/ggshield-action@9074c0893e8ee86ccd6418177a0eb3e5aa02262a # v1.22.0 - with: - args: -v --ignore-known-secrets - env: - GITHUB_PUSH_BEFORE_SHA: ${{ github.event.before }} - GITHUB_PUSH_BASE_SHA: ${{ github.event.base }} - GITHUB_PULL_BASE_SHA: ${{ github.event.pull_request.base.sha }} - GITHUB_DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} - GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}