Skip to content

Commit

Permalink
add trufflehog action for secrets scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Long committed Apr 18, 2024
1 parent 7f86e2b commit bedb691
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/scan_for_secrets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Scan for Secrets

# This workflow tests that the action can successfully
# scan a GitHub repository. This workflow runs automatically
# every 6 hours, and on pushes.

on: [push]

jobs:
daily_job:
runs-on: ubuntu-latest
environment:
name: plugin-development

steps:
- name: Checkout this repository
uses: actions/checkout@v4

- name: TruffleHog OSS
uses: trufflesecurity/trufflehog@v3.73.0
with:
extra_args: --only-verified



0 comments on commit bedb691

Please sign in to comment.