https://github.com/max/secret-scan
https://github.com/max/secret-scan
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/max/secret-scan
- Owner: max
- Created: 2019-03-08T20:40:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-07T02:57:58.000Z (5 months ago)
- Last Synced: 2025-03-30T08:09:04.368Z (4 months ago)
- Language: Shell
- Size: 11.7 KB
- Stars: 51
- Watchers: 6
- Forks: 28
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Secret Scan for GitHub Actions
Scan your repo for secrets. AWS tokens, keys, this has you covered.
## Example
```yaml
on: push
name: Find Secrets
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: max/secret-scan@master
```## Example with path filters
```yaml
on: push
name: Find Secrets
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: max/secret-scan@master
with:
include_path: 'configuration/include_paths.txt'
exclude_path: 'configuration/exclude_paths.txt'
```For more information about the format of the configuration files for include or exclude paths, please refer to [TruffleHog](https://github.com/dxa4481/truffleHog).