Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Add trufflehog workflow #195

Merged
merged 4 commits into from
Jan 5, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/trufflehog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Trufflehog

on:
push:
branches: [ "master", "development" ]
pull_request:

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

jobs:
# Scan for secrets with trufflehog; surface verified only.
# https://github.com/trufflesecurity/trufflehog
TruffleHog:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: TruffleHog OSS
id: trufflehog
uses: trufflesecurity/trufflehog@v3
continue-on-error: true
with:
path: ./
base: "${{ github.event.repository.default_branch }}"
head: HEAD
extra_args: --only-verified

- name: Scan Results Status
if: steps.trufflehog.outcome == 'failure'
run: exit 1
Loading