Bump actions/checkout from 5 to 6 #108
Workflow file for this run
This file contains hidden or 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 codebase | |
| on: | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| build: | |
| name: Lint codebase | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| # Full git history is needed to get a proper | |
| # list of changed files within `super-linter` | |
| fetch-depth: 0 | |
| - name: Lint codebase | |
| uses: super-linter/super-linter@v8 | |
| env: | |
| # This repo is small enough for a full check | |
| VALIDATE_ALL_CODEBASE: true | |
| VALIDATE_BIOME_FORMAT: false | |
| VALIDATE_BIOME_LINT: false | |
| VALIDATE_CHECKOV: false | |
| VALIDATE_NATURAL_LANGUAGE: false | |
| VALIDATE_GITHUB_ACTIONS_ZIZMOR: false | |
| FIX_JSON: true | |
| FIX_MARKDOWN: true | |
| FIX_MARKDOWN_PRETTIER: true | |
| FIX_PROTOBUF: true | |
| FIX_YAML_PRETTIER: true | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |