Bump github.com/nicklaw5/helix from 1.24.4 to 1.25.0 #659
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: Super Linter | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Run Linters | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: run-linters | |
uses: github/super-linter@v4.5.1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# disabled because it's not working with C libs | |
VALIDATE_GO: false | |
# disabled cause there are lots to change in Dockerfile.nvidia | |
VALIDATE_DOCKERFILE_HADOLINT: false | |
# disabled cause they dont support CRDs rn | |
VALIDATE_KUBERNETES_KUBEVAL: false | |
# disabled until we go through and fix the issues | |
VALIDATE_JSCPD: false | |
VALIDATE_ENV: false | |
VALIDATE_SQL: false |