Skip to content

Commit 40012dd

Browse files
committed
use a newer version of golang-ci-lint, update the deps of the custom logrus linter to the latest versions
1 parent b27146c commit 40012dd

File tree

3 files changed

+607
-68
lines changed

3 files changed

+607
-68
lines changed

hack/golangci-lint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -e -o pipefail
1818

1919
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2020
BIN=${DIR}/bin
21-
VERSION=1.64.4
21+
VERSION=1.64.8
2222

2323
function install_linter() {
2424
echo "Installing GolangCI-Lint"

hack/tools/go.mod

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
module tools
22

3-
go 1.23
3+
go 1.24.0
4+
45
require (
5-
github.com/corneliusweig/release-notes v0.0.0-20191014214505-0be5c7c66752
6-
golang.org/x/tools v0.19.0
6+
github.com/corneliusweig/release-notes v0.1.4
7+
golang.org/x/tools v0.31.0
78
)
89

910
require (
10-
github.com/golang/protobuf v1.2.0 // indirect
11-
github.com/google/go-github/v28 v28.1.1 // indirect
12-
github.com/google/go-querystring v1.0.0 // indirect
13-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
14-
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
15-
github.com/sirupsen/logrus v1.4.2 // indirect
16-
github.com/spf13/cobra v0.0.5 // indirect
17-
github.com/spf13/pflag v1.0.3 // indirect
18-
golang.org/x/crypto v0.35.0 // indirect
19-
golang.org/x/mod v0.16.0 // indirect
20-
golang.org/x/net v0.36.0 // indirect
21-
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect
22-
golang.org/x/sys v0.30.0 // indirect
23-
google.golang.org/appengine v1.4.0 // indirect
11+
github.com/blang/semver v3.5.1+incompatible // indirect
12+
github.com/google/go-github/v38 v38.1.0 // indirect
13+
github.com/google/go-querystring v1.1.0 // indirect
14+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
15+
github.com/pkg/errors v0.9.1 // indirect
16+
github.com/sirupsen/logrus v1.9.3 // indirect
17+
github.com/spf13/cobra v1.9.1 // indirect
18+
github.com/spf13/pflag v1.0.6 // indirect
19+
golang.org/x/crypto v0.36.0 // indirect
20+
golang.org/x/mod v0.24.0 // indirect
21+
golang.org/x/oauth2 v0.28.0 // indirect
22+
golang.org/x/sync v0.12.0 // indirect
23+
golang.org/x/sys v0.31.0 // indirect
2424
)

0 commit comments

Comments
 (0)