ci: bump actions/cache from 4.3.0 to 5.0.5 #1564
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 Docs and Non-Go Code | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| permissions: {} | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| statuses: write | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - name: Lint Code Base | |
| uses: super-linter/super-linter/slim@9e863354e3ff62e0727d37183162c4a88873df41 # v8.6.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| FILTER_REGEX_EXCLUDE: .*gatling/mvnw.*|conformance-tests/.*\.ts$|examples/chat/chart/mercure-example-chat/README.md$ | |
| VALIDATE_BIOME_FORMAT: false | |
| VALIDATE_BIOME_LINT: false | |
| VALIDATE_CHECKOV: false | |
| VALIDATE_GITLEAKS: false | |
| VALIDATE_GO: false | |
| VALIDATE_GO_MODULES: false | |
| VALIDATE_GO_RELEASER: false | |
| VALIDATE_PHP_PHPCS: false | |
| VALIDATE_KUBERNETES_KUBECONFORM: false | |
| VALIDATE_JAVASCRIPT_STANDARD: false | |
| VALIDATE_TYPESCRIPT_STANDARD: false | |
| VALIDATE_PYTHON_PYLINT: false | |
| VALIDATE_PYTHON_RUFF_FORMAT: false | |
| VALIDATE_TRIVY: false | |
| # To re-enable when https://github.com/super-linter/super-linter/issues/7466 will be closed | |
| VALIDATE_SPELL_CODESPELL: false |