1//go:build tools 2 3// SPDX-FileCopyrightText: Copyright The Lima Authors 4// SPDX-License-Identifier: Apache-2.0 5 6// Package tools is used to explicitly pin tool versions. 7// It's needed to work around @dependabot's lack of upgrading indirect dependencies. 8package tools 9 10import ( 11 _ "github.com/containerd/ltag" 12 _ "github.com/golangci/golangci-lint/v2/pkg/exitcodes" 13 _ "github.com/yoheimuta/protolint/lib" 14 _ "google.golang.org/grpc" 15 _ "google.golang.org/protobuf/proto" 16 _ "mvdan.cc/sh/v3/pattern" 17) 18 19