Bumps [github/super-linter](https://github.com/github/super-linter) from v3.16.3 to v3.17.0. - [Release notes](https://github.com/github/super-linter/releases) - [Commits](https://github.com/github/super-linter/compare/v3.16.3...28cfebb84fd6dd9e8773b5efe5ac0f8f3714f228) Signed-off-by: dependabot[bot] <support@github.com>
26 lines
529 B
YAML
26 lines
529 B
YAML
name: Lint Code
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint:
|
|
name: Super Linter
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Lint code base
|
|
uses: github/super-linter@v3.17.0
|
|
env:
|
|
VALIDATE_ALL_CODEBASE: false
|
|
VALIDATE_DOCKERFILE_HADOLINT: true
|
|
VALIDATE_BASH: true
|
|
DEFAULT_BRANCH: main
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|