From ae8419dba7e17584f496fdf1cbef91fce0f7bc41 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Tue, 20 Feb 2024 12:08:19 +1000 Subject: [PATCH] super-linter: set `VALIDATE_GITLEAKS` to `true` Flag to enable the linting process of the secrets. Just another check or test we can have. Set VALIDATE_ALL_CODEBASE: true https://github.com/super-linter/super-linter?tab=readme-ov-file#configure-super-linter --- .github/workflows/super-linter.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index ca41e1384..11bb4f504 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -25,7 +25,8 @@ jobs: VALIDATE_BASH: true # VALIDATE_BASH_EXEC: true # VALIDATE_EDITORCONFIG: true + VALIDATE_GITLEAKS: true # VALIDATE_SHELL_SHFMT: true DEFAULT_BRANCH: master GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - VALIDATE_ALL_CODEBASE: false + VALIDATE_ALL_CODEBASE: true