From d697158636e2ba874b3b07373ef1672adeac41ca Mon Sep 17 00:00:00 2001 From: Fabian 'xx4h' Sylvester Date: Sat, 13 Apr 2024 17:44:57 +0200 Subject: [PATCH] Re-enable Linter --- .github/workflows/{linter.yml.disabled => linter.yml} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{linter.yml.disabled => linter.yml} (75%) diff --git a/.github/workflows/linter.yml.disabled b/.github/workflows/linter.yml similarity index 75% rename from .github/workflows/linter.yml.disabled rename to .github/workflows/linter.yml index 430f2fd3..fe4381e8 100644 --- a/.github/workflows/linter.yml.disabled +++ b/.github/workflows/linter.yml @@ -17,13 +17,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 - name: Lint Code Base - uses: github/super-linter@v4 + uses: super-linter/super-linter@v6.3.1 env: - VALIDATE_ALL_CODEBASE: false - DEFAULT_BRANCH: main + # only validate new or edited files + # VALIDATE_ALL_CODEBASE: false GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}