Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): add trufflehog secrets detection
Browse files Browse the repository at this point in the history
McPatate committed Jun 10, 2024
1 parent 1d84e2b commit bde665a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/trufflehog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
push:

name: Secret Leaks

permissions:
contents: read
id-token: write
issues: write
pull-requests: write

jobs:
trufflehog:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Secret Scanning
uses: trufflesecurity/trufflehog@main

0 comments on commit bde665a

Please sign in to comment.