From 0a9298ff04ee58e003d7c4d5779bb24dd1945f85 Mon Sep 17 00:00:00 2001
From: Erreur32 <erreur32@echosystem.fr>
Date: Mon, 24 Mar 2025 22:34:24 +0100
Subject: [PATCH] Remove gitleaks workflow

---
 .github/workflows/gitleaks.yml | 26 --------------------------
 1 file changed, 26 deletions(-)
 delete mode 100644 .github/workflows/gitleaks.yml

diff --git a/.github/workflows/gitleaks.yml b/.github/workflows/gitleaks.yml
deleted file mode 100644
index ebdebe2..0000000
--- a/.github/workflows/gitleaks.yml
+++ /dev/null
@@ -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