Bump github/super-linter from 6 to 7 #255
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Lint | |
on: pull_request | |
permissions: read-all | |
jobs: | |
super-lint: | |
name: Lint with Supper-Linter | |
runs-on: ubuntu-latest | |
steps: | |
# Checks out a copy of your repository on the ubuntu-latest machine | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Runs the Super-Linter action | |
- name: Run Super-Linter on new changes | |
uses: github/super-linter@v7 | |
env: | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Only check new or edited files | |
VALIDATE_ALL_CODEBASE: false | |
# Fail on errors | |
DISABLE_ERRORS: false | |
VALIDATE_CHECKOV: false |