scorecard/tools/tools.go
dependabot[bot] 6cae56f02b
🌱 Bump goreleaser/goreleaser-action from 5.1.0 to 6.0.0 (#4158)
* 🌱 Bump goreleaser/goreleaser-action from 5.1.0 to 6.0.0

Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 5.1.0 to 6.0.0.
- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)
- [Commits](5742e2a039...286f3b13b1)

---
updated-dependencies:
- dependency-name: goreleaser/goreleaser-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* use --clean instead of --rm-dist

https: //goreleaser.com/deprecations#-rm-dist

Signed-off-by: Spencer Schrock <sschrock@google.com>

* the skip arguments were combined into --skip

https://goreleaser.com/deprecations/#-skip

Signed-off-by: Spencer Schrock <sschrock@google.com>

* update config for v2

Signed-off-by: Spencer Schrock <sschrock@google.com>

* use goreleaser v2 tooling for makefile

Signed-off-by: Spencer Schrock <sschrock@google.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Spencer Schrock <sschrock@google.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Spencer Schrock <sschrock@google.com>
Co-authored-by: Stephen Augustus <justaugustus@users.noreply.github.com>
2024-06-25 22:30:41 +00:00

30 lines
946 B
Go

//go:build tools
// +build tools
// Copyright 2020 OpenSSF Scorecard Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
_ "github.com/golang/mock/mockgen"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/google/addlicense"
_ "github.com/google/ko"
_ "github.com/goreleaser/goreleaser/v2"
_ "github.com/onsi/ginkgo/v2/ginkgo"
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
)