Skip to content

Commit

Permalink
ci: disbled unused checks from super-linter
Browse files Browse the repository at this point in the history
checkov is a linter for infrastructire as code, which we do not use in
this repository. It detects an error under the `vendor/` directory,
which should be skipped either way (filtering not working for this
checker?).

There is no need to run the checked for Go modules. We have other CI
jobs that validate the Go modules already. Because parts of Kubernetes
are vendored (which is large), the Go module checker times out.

Signed-off-by: Niels de Vos <ndevos@ibm.com>
  • Loading branch information
nixpanic committed Feb 20, 2024
1 parent 349a8cc commit a2c5504
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/lint-extras.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FILTER_REGEX_EXCLUDE: >
(.*vendor/.*)|(.*tools/vendor/.*)
VALIDATE_CHECKOV: false
VALIDATE_GO: false
VALIDATE_GO_MODULES: false
VALIDATE_JSCPD: false
VALIDATE_KUBERNETES_KUBECONFORM: false
VALIDATE_PROTOBUF: false
Expand Down

0 comments on commit a2c5504

Please sign in to comment.