Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ lint: install-build-deps
go tool golangci-lint run

install-build-deps:
ifeq (, $(shell which go-licenses))
go install github.com/google/go-licenses@v1.6.0
endif
ifeq (, $(shell which copywrite))
go install github.com/hashicorp/copywrite@v0.22.0
endif
Expand All @@ -51,7 +48,7 @@ docs:
cp docs/oms-cli.md docs/README.md

generate-license: generate
go-licenses report --template .NOTICE.template ./... > NOTICE
go tool go-licenses report --template .NOTICE.template ./... > NOTICE
copywrite headers apply

run-lima:
Expand Down
4 changes: 2 additions & 2 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ License URL: https://github.com/google/go-querystring/blob/v1.1.0/LICENSE
----------
Module: github.com/inconshreveable/go-update
Version: v0.0.0-20160112193335-8152e7eb6ccf
License: Apache-2.0
License URL: https://github.com/inconshreveable/go-update/blob/8152e7eb6ccf/LICENSE
License: Unknown
License URL: Unknown

----------
Module: github.com/inconshreveable/go-update/internal/binarydist
Expand Down
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,10 @@ require (
github.com/google/go-containerregistry v0.20.6 // indirect
github.com/google/go-github/v30 v30.1.0 // indirect
github.com/google/go-github/v78 v78.0.0 // indirect
github.com/google/go-licenses/v2 v2.0.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/ko v0.18.0 // indirect
github.com/google/licenseclassifier/v2 v2.0.0 // indirect
github.com/google/pprof v0.0.0-20251114195745-4902fdda35c8 // indirect
github.com/google/rpmpack v0.7.1 // indirect
github.com/google/s2a-go v0.1.9 // indirect
Expand Down Expand Up @@ -384,6 +386,7 @@ require (
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.1 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/otiai10/copy v1.14.0 // indirect
github.com/pborman/uuid v1.2.1 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
Expand Down Expand Up @@ -485,6 +488,7 @@ require (
go.augendre.info/arangolint v0.3.1 // indirect
go.augendre.info/fatcontext v0.9.0 // indirect
go.mongodb.org/mongo-driver v1.17.3 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/contrib/detectors/gcp v1.38.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.62.0 // indirect
Expand Down Expand Up @@ -534,6 +538,7 @@ require (

tool (
github.com/golangci/golangci-lint/v2/cmd/golangci-lint
github.com/google/go-licenses/v2
github.com/goreleaser/goreleaser/v2
github.com/vektra/mockery/v3
)
Loading