-
Notifications
You must be signed in to change notification settings - Fork 4
35 lines (30 loc) · 896 Bytes
/
Copy pathgitleaks.yml
File metadata and controls
35 lines (30 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: gitleaks
on:
push:
pull_request:
permissions:
contents: read
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install gitleaks CLI
run: |
GITLEAKS_VERSION=8.21.2
curl -sSfL \
"https://github.com/gitleaks/gitleaks/releases/download/v${GITLEAKS_VERSION}/gitleaks_${GITLEAKS_VERSION}_linux_x64.tar.gz" \
| sudo tar -xz -C /usr/local/bin gitleaks
- name: Run gitleaks (workspace scan)
run: |
gitleaks detect --redact --source . \
--config .gitleaks.toml \
--report-format=sarif --report-path=results.sarif --exit-code=1
- name: Upload SARIF report
if: always()
uses: actions/upload-artifact@v4
with:
name: gitleaks-results
path: results.sarif