This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
CORE-1838 point sandbox to sepolia #57
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Leaked Secrets Scan | |
on: [pull_request] | |
jobs: | |
TruffleHog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: TruffleHog OSS | |
uses: docker://ghcr.io/trufflesecurity/trufflehog:3.6.9 | |
with: | |
# Here is the meaning for the following args | |
# "git" "file://./" # Repository path | |
# "--since-commit" "${{ github.event.repository.default_branch }}" # Start scanning from here (usually main branch). | |
# "--branch" HEAD # Scan commits until here (usually dev branch). | |
# --fail # On finding issues fails with a error code | |
args: | | |
"git" "file://./" "--since-commit" "${{ github.event.repository.default_branch }}" "--branch" "HEAD" "--fail" |