Skip to content

Commit 1a4a22d

Browse files
dependabot[bot]oliver-goetz
authored andcommitted
Bump golang from 1.20.7 to 1.21.0 (gardener#8333)
* Bump golang from 1.20.7 to 1.21.0 Bumps golang from 1.20.7 to 1.21.0. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Update to `[email protected]` For Go 1.21 support: golangci/golangci-lint#3933 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: oliver-goetz <[email protected]>
1 parent 17a41c3 commit 1a4a22d

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# builder
2-
FROM golang:1.20.7 AS builder
2+
FROM golang:1.21.0 AS builder
33
WORKDIR /go/src/github.com/gardener/gardener
44
COPY . .
55
ARG EFFECTIVE_VERSION

hack/tools.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ YQ := $(TOOLS_BIN_DIR)/yq
5959

6060
# default tool versions
6161
DOCFORGE_VERSION ?= v0.33.0
62-
GOLANGCI_LINT_VERSION ?= v1.53.1
62+
GOLANGCI_LINT_VERSION ?= v1.54.1
6363
GO_APIDIFF_VERSION ?= v0.5.0
6464
GO_ADD_LICENSE_VERSION ?= v1.1.1
6565
GOIMPORTSREVISER_VERSION ?= v3.3.1

hack/tools/gomegacheck/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ go 1.20
66
// only needed to build the gomegacheck tool
77
// this has to be kept in sync with the used golangci-lint version
88
// use go version -m hack/tools/bin/golangci-lint to detect the dependency versions
9-
require golang.org/x/tools v0.9.2
9+
require golang.org/x/tools v0.12.0
1010

1111
require (
12-
golang.org/x/mod v0.10.0 // indirect
13-
golang.org/x/sys v0.8.0 // indirect
12+
golang.org/x/mod v0.12.0 // indirect
13+
golang.org/x/sys v0.11.0 // indirect
1414
)

hack/tools/gomegacheck/go.sum

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk=
2-
golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
3-
golang.org/x/sync v0.2.0 h1:PUR+T4wwASmuSTYdKjYHI5TD22Wy5ogLU5qZCOLxBrI=
4-
golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU=
5-
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
6-
golang.org/x/tools v0.9.2 h1:UXbndbirwCAx6TULftIfie/ygDNCwxEie+IiNP1IcNc=
7-
golang.org/x/tools v0.9.2/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc=
1+
golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc=
2+
golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
3+
golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
4+
golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
5+
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
6+
golang.org/x/tools v0.12.0 h1:YW6HUoUmYBpwSgyaGaZq1fHjrBjX1rlpZ54T6mu2kss=
7+
golang.org/x/tools v0.12.0/go.mod h1:Sc0INKfu04TlqNoRA1hgpFZbhYXHPr4V5DzpSBTPqQM=

hack/tools/logcheck/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ go 1.20
55
// This is a separate go module to decouple the gardener codebase and production binaries from dependencies that are
66
// only needed to build the logcheck tool
77
require (
8-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e
8+
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea
99
// this has to be kept in sync with the used golangci-lint version
1010
// use go version -m hack/tools/bin/golangci-lint to detect the dependency versions
11-
golang.org/x/tools v0.9.2
11+
golang.org/x/tools v0.12.0
1212
)
1313

1414
require (
15-
golang.org/x/mod v0.10.0 // indirect
16-
golang.org/x/sys v0.8.0 // indirect
15+
golang.org/x/mod v0.12.0 // indirect
16+
golang.org/x/sys v0.11.0 // indirect
1717
)

hack/tools/logcheck/go.sum

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA=
2-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e/go.mod h1:Kr81I6Kryrl9sr8s2FK3vxD90NdsKWRuOIl2O4CvYbA=
3-
golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk=
4-
golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
5-
golang.org/x/sync v0.2.0 h1:PUR+T4wwASmuSTYdKjYHI5TD22Wy5ogLU5qZCOLxBrI=
6-
golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU=
7-
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
8-
golang.org/x/tools v0.9.2 h1:UXbndbirwCAx6TULftIfie/ygDNCwxEie+IiNP1IcNc=
9-
golang.org/x/tools v0.9.2/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc=
1+
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea h1:vLCWI/yYrdEHyN2JzIzPO3aaQJHQdp89IZBA/+azVC4=
2+
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea/go.mod h1:V1LtkGg67GoY2N1AnLN78QLrzxkLyJw7RJb1gzOOz9w=
3+
golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc=
4+
golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
5+
golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
6+
golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
7+
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
8+
golang.org/x/tools v0.12.0 h1:YW6HUoUmYBpwSgyaGaZq1fHjrBjX1rlpZ54T6mu2kss=
9+
golang.org/x/tools v0.12.0/go.mod h1:Sc0INKfu04TlqNoRA1hgpFZbhYXHPr4V5DzpSBTPqQM=

0 commit comments

Comments
 (0)