Skip to content

Commit cd29462

Browse files
bluesentinelsecMichael Long
andauthored
add trufflehog action for secrets scanning (#32)
Co-authored-by: Michael Long <mlongii@amazon.com>
1 parent 7f86e2b commit cd29462

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Scan for Secrets
2+
3+
# This workflow tests that the action can successfully
4+
# scan a GitHub repository. This workflow runs automatically
5+
# every 6 hours, and on pushes.
6+
7+
on: [push]
8+
9+
jobs:
10+
daily_job:
11+
runs-on: ubuntu-latest
12+
environment:
13+
name: plugin-development
14+
15+
steps:
16+
- name: Checkout this repository
17+
uses: actions/checkout@v4
18+
19+
- name: TruffleHog OSS
20+
uses: trufflesecurity/trufflehog@v3.73.0
21+
with:
22+
extra_args: --only-verified
23+
24+
25+

0 commit comments

Comments
 (0)