kube-prometheus/scripts/tools.go
Simon Pasquier 8c5b5b54f5
ci: update kubescape (#2658)
This commit changes the way kubescape gets installed because it's no
longer possible to use the `scripts/tools.go` approach.

Instead we use the method recommended by the upstream documentation.

Signed-off-by: Simon Pasquier <spasquie@redhat.com>
2025-05-16 10:49:03 +01:00

17 lines
505 B
Go

//go:build tools
// +build tools
// Package tools tracks dependencies for tools that used in the build process.
// See https://github.com/golang/go/wiki/Modules
package tools
import (
_ "github.com/brancz/gojsontoyaml"
_ "github.com/bwplotka/mdox"
_ "github.com/google/go-jsonnet/cmd/jsonnet"
_ "github.com/google/go-jsonnet/cmd/jsonnet-lint"
_ "github.com/google/go-jsonnet/cmd/jsonnetfmt"
_ "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb"
_ "github.com/yannh/kubeconform/cmd/kubeconform"
)