There was an error while loading. Please reload this page.
1 parent eb193ce commit 8c19f51Copy full SHA for 8c19f51
1 file changed
.github/workflows/ci.yml
@@ -64,5 +64,12 @@ jobs:
64
- uses: actions/checkout@v4
65
with:
66
fetch-depth: 0
67
+ - name: Install gitleaks (OSS binary)
68
+ run: |
69
+ GITLEAKS_VERSION="8.28.0"
70
+ curl -sSL "https://github.com/gitleaks/gitleaks/releases/download/v${GITLEAKS_VERSION}/gitleaks_${GITLEAKS_VERSION}_linux_x64.tar.gz" -o gitleaks.tar.gz
71
+ tar -xzf gitleaks.tar.gz
72
+ sudo mv gitleaks /usr/local/bin/gitleaks
73
+ gitleaks version
74
- name: Run gitleaks
- uses: gitleaks/gitleaks-action@v2
75
+ run: gitleaks detect --source . --verbose --redact
0 commit comments