Skip to content

test: echidna fuzzing remove max leverage #3123

test: echidna fuzzing remove max leverage

test: echidna fuzzing remove max leverage #3123

Workflow file for this run

name: Scan for secrets
on:
push:
branches:
- main
pull_request:
jobs:
trufflehog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Install just
uses: taiki-e/install-action@just
- name: Generate trufflehog config
env:
TRUFFLEHOG_URL: ${{ secrets.TRUFFLEHOG_URL }}
run: just trufflehog-config
- name: TruffleHog
uses: trufflesecurity/trufflehog@main
with:
extra_args: --results=verified,unknown --config .trufflehog.yml --exclude-paths=.trufflehog-ignore
notify-on-failure:
needs: trufflehog
if: ${{ always() && contains(needs.*.result, 'failure') }}
uses: ./.github/workflows/notify_failure.yml
secrets: inherit