GitHub Actions: Bump actions/checkout from 5 to 6 in the github-actions group #14
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 | |
| on: | |
| pull_request: | |
| branches: [main] | |
| # Allow manual triggering | |
| workflow_dispatch: | |
| # Allow other workflows (e.g. Pages) to invoke this one. | |
| workflow_call: | |
| permissions: {} | |
| jobs: | |
| super-linter: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| statuses: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Run Super-Linter | |
| uses: super-linter/super-linter/slim@v8 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Validate all files on push/workflow_dispatch, only changed files on PRs | |
| VALIDATE_ALL_CODEBASE: >- | |
| ${{ github.event_name != 'pull_request' }} | |
| # VALIDATE_GITHUB_ACTIONS_ZIZMOR: true | |
| VALIDATE_MARKDOWN: true | |
| # VALIDATE_NATURAL_LANGUAGE: true | |
| VALIDATE_YAML: true |