ci: run gitleaks directly
Gitleaks / gitleaks (push) Failing after 5s

This commit is contained in:
2026-06-01 20:36:23 -04:00
parent def5f83394
commit fed7565389
+9 -3
View File
@@ -10,8 +10,14 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Gitleaks
run: |
wget -q https://github.com/gitleaks/gitleaks/releases/download/v8.24.2/gitleaks_8.24.2_linux_x64.tar.gz
tar -xzf gitleaks_8.24.2_linux_x64.tar.gz
chmod +x gitleaks
- name: Run Gitleaks - name: Run Gitleaks
uses: gitleaks/gitleaks-action@v2 run: ./gitleaks detect --source . --config .gitleaks.toml --verbose
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}