build(deps): Bump bufbuild/buf-setup-action from 1.25.0 to 1.46.0 #418
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: Linter | |
on: | |
push: | |
paths: | |
- "**.md" | |
- "**.yml" | |
- "**.yaml" | |
pull_request: | |
paths: | |
- "**.md" | |
- "**.yml" | |
jobs: | |
build-linter: | |
name: Super linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Lint Code Base | |
uses: github/super-linter@v5 | |
env: | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# https://github.com/github/super-linter#example-connecting-github-action-workflow | |
# Note: All the VALIDATE_[LANGUAGE] variables behave in a very specific way: | |
# | |
# If none of them are passed, then they all default to true. | |
# If any one of the variables are set to true, we default to leaving any unset variable to false (only validate those languages). | |
# If any one of the variables are set to false, we default to leaving any unset variable to true (only exclude those languages). | |
# If there are VALIDATE_[LANGUAGE] variables set to both true and false. It will fail. | |
VALIDATE_ALL_CODEBASE: true | |
VALIDATE_MD: true | |
VALIDATE_OPENAPI: true | |
VALIDATE_YAML: true |