mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 23:23:57 +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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: TruffleHog OSS
|
|
uses: trufflesecurity/trufflehog@d53b83b58e37db1e58560a0ea5344470c054793f # v3.68.0
|
|
with:
|
|
path: ./
|
|
base: ${{ github.event.repository.default_branch }}
|
|
head: HEAD
|
|
extra_args: --debug --only-verified
|
|
|