mirror of https://github.com/aliasrobotics/cai.git
24 lines
660 B
YAML
24 lines
660 B
YAML
name: gitleaks
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
scan:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install gitleaks
|
|
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" \
|
|
| tar -xz -C /tmp gitleaks
|
|
sudo mv /tmp/gitleaks /usr/local/bin/gitleaks
|
|
gitleaks version
|
|
- name: Run gitleaks
|
|
run: gitleaks detect --config=.gitleaks.toml --no-banner --redact --verbose --no-git
|