Improve contact routing accuracy #214
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: gitleaks | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| scan: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install gitleaks | |
| run: | | |
| set -euo pipefail | |
| VER="8.30.0" | |
| curl -fsSLo /tmp/gitleaks.tgz "https://github.com/gitleaks/gitleaks/releases/download/v${VER}/gitleaks_${VER}_linux_x64.tar.gz" | |
| mkdir -p /tmp/gitleaks | |
| tar -xzf /tmp/gitleaks.tgz -C /tmp/gitleaks | |
| sudo install -m 0755 /tmp/gitleaks/gitleaks /usr/local/bin/gitleaks | |
| gitleaks version | |
| - name: Run gitleaks (working tree) | |
| run: gitleaks detect --no-git --redact |