Skip to content

01- Run TruffleHog Security Scan #18

01- Run TruffleHog Security Scan

01- Run TruffleHog Security Scan #18

name: 01- Run TruffleHog Security Scan
on:
workflow_dispatch:
jobs:
trufflehog_scan:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Secret Scanning
uses: trufflesecurity/trufflehog@main
with:
extra_args: "--version -h"
- name: Install TruffleHog
run: |
python -m pip install --upgrade pip
pip install --upgrade trufflehog
- name: Save TruffleHog Report to JSON file
run: |
trufflehog --json https://github.com/${{ github.repository }} > trufflehog_report.json
- name: Upload TruffleHog Report
uses: actions/[email protected]
with:
name: trufflehog-report
path: trufflehog_report.json