From b963a97e149e0b138e3625cedcca75f6cf3f408a Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Tue, 20 Feb 2024 23:43:32 +0100 Subject: [PATCH] Fix super-linter --- .github/workflows/php.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 43c6f8f..6eaf193 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -21,14 +21,18 @@ jobs: steps: - uses: actions/checkout@v4 with: + # super-linter needs the full git history to get the + # list of files that changed across commits fetch-depth: 0 - name: Lint Code Base - uses: github/super-linter/slim@v5 + uses: super-linter/super-linter/slim@v6 env: + # To report GitHub Actions status checks + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + LINTER_RULES_PATH: 'tools/linters' LOG_LEVEL: NOTICE VALIDATE_ALL_CODEBASE: true - LINTER_RULES_PATH: 'tools/linters' VALIDATE_CSS: true VALIDATE_JAVASCRIPT_ES: true VALIDATE_JSON: true