Remove gitleaks workflow

This commit is contained in:
Erreur32 2025-03-24 22:34:24 +01:00
parent e9b2a59291
commit 0a9298ff04

View file

@ -1,26 +0,0 @@
name: Gitleaks Security Scan
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
gitleaks:
name: Run Gitleaks Scan
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Gitleaks
run: |
wget https://github.com/gitleaks/gitleaks/releases/latest/download/gitleaks-linux-amd64 -O gitleaks
chmod +x gitleaks
sudo mv gitleaks /usr/local/bin/
- name: Run Gitleaks
run: gitleaks detect --source . --verbose --exit-code 1