From 723799b363d87d977dded4312f5427b3ae3ff5a1 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Wed, 28 Jan 2026 17:11:11 +1000 Subject: [PATCH] Update super-linter.yml --- .github/workflows/super-linter.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index decb845..182068a 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -2,20 +2,28 @@ name: Super-Linter on: [pull_request] +permissions: {} + jobs: build: name: Run Super-Linter runs-on: ubuntu-latest + permissions: + # contents permission to clone the repository + contents: read steps: - - uses: actions/checkout@v6 + - name: Checkout Code + uses: actions/checkout@v6 with: # super-linter needs the full git history to get the # list of files that changed across commits fetch-depth: 0 persist-credentials: false - - uses: super-linter/super-linter@v8.3.2 + - name: Super-Linter + uses: super-linter/super-linter@v8.3.2 env: ERROR_ON_MISSING_EXEC_BIT: true VALIDATE_EDITORCONFIG: true + VALIDATE_MARKDOWN: true VALIDATE_YAML: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}