mirror of
https://github.com/matter-labs/vault-auth-tee.git
synced 2025-07-20 15:23:56 +02:00
18 lines
531 B
YAML
18 lines
531 B
YAML
name: Leaked Secrets Scan
|
|
on: [pull_request]
|
|
jobs:
|
|
TruffleHog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: TruffleHog OSS
|
|
uses: trufflesecurity/trufflehog@eafb8c5f6a06175141c27f17bcc17941853d0047 # v3.90.0
|
|
with:
|
|
path: ./
|
|
base: ${{ github.event.repository.default_branch }}
|
|
head: HEAD
|
|
extra_args: --debug --only-verified
|
|
|