Skip to content

Introduced support of the .env for the local development #17

Introduced support of the .env for the local development

Introduced support of the .env for the local development #17

Workflow file for this run

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