From 19594ec1f89822d63e645f8b052872ed253be614 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Sun, 2 Aug 2026 13:46:39 +0200 Subject: [PATCH] chore: stop forwarding the deprecated GITLEAKS_LICENSE secret Secret scanning runs on betterleaks, which is OSS and needs no license. The shared gitleaks reusable declares GITLEAKS_LICENSE only for backwards compatibility and never reads it, and the org-level secret has been deleted, so this workflow was handing an empty value to an input that ignores it. Only the mapping line is removed; the enclosing `secrets:` key goes with it only when nothing else was left under it. Other secrets in the same block are untouched. Signed-off-by: Sebastian Mendel --- .github/workflows/security.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 1010656..c65d458 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -9,8 +9,6 @@ on: jobs: gitleaks: uses: netresearch/.github/.github/workflows/gitleaks.yml@main - secrets: - GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }} dependency-review: if: github.event_name == 'pull_request'