Introduced support of the .env for the local development #17
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: Trufflehog Security Scan | |
on: | |
push: | |
branches: | |
- '*' # Triggers on pushes to all branches | |
jobs: | |
trufflehog-vulnerability-detection: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Secret Scanning | |
id: trufflehog_scan | |
uses: trufflesecurity/[email protected] | |
with: | |
path: ./ | |
base: "" # No specific base commit for comparison, scans the entire branch | |
head: ${{ github.ref_name }} # Current branch name | |
extra_args: --exclude-detectors uri --exclude-paths .trufflehog/.trufflehogignore.txt # Exclude the URI detector and specific files from scanning |