docs: improve upgrade instructions for 0.17 and 0.21 #1120
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: | |
| contents: read | |
| packages: read | |
| statuses: write | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - name: Lint Code Base | |
| uses: super-linter/super-linter/slim@v8 | |
| 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 |