Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,17 @@ jobs:

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

- name: TruffleHog OSS

Trufflehog-Scan:
runs-on: ubuntu-latest
needs: CodeQL-Build
steps:
- name: Checkout repository (for Trufflehog - full history)
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: TruffleHog OSS (on pull_request)
if: github.event_name == 'pull_request'
uses: trufflesecurity/trufflehog@main
with:
Expand All @@ -82,4 +91,4 @@ jobs:
uses: trufflesecurity/trufflehog@main
with:
path: ./
extra_args: --debug --only-verified --all # Scanning the entire repo
extra_args: --debug --only-verified # Scanning the entire repo
Loading