Skip to content

Commit

Permalink
Bump golang from 1.23.6 to 1.24.0 (#352)
Browse files Browse the repository at this point in the history
* Bump golang from 1.23.6 to 1.24.0

Bumps golang from 1.23.6 to 1.24.0.

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update the go version in go.mod, pipeline_definitions and in `make generate-in-docker`

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ismail Alidzhikov <[email protected]>
  • Loading branch information
dependabot[bot] and ialidzhikov authored Feb 19, 2025
1 parent 7442565 commit 3527cb9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ci/pipeline_definitions
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ gardener-extension-registry-cache:
release:
steps:
verify:
image: 'golang:1.23.6'
image: 'golang:1.24.0'
traits:
version:
preprocess: 'finalize'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: Apache-2.0

############# builder
FROM golang:1.23.6 AS builder
FROM golang:1.24.0 AS builder

WORKDIR /go/src/github.com/gardener/gardener-extension-registry-cache

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ generate: $(VGOPATH) $(CONTROLLER_GEN) $(GEN_CRD_API_REFERENCE_DOCS) $(HELM) $(Y

.PHONE: generate-in-docker
generate-in-docker:
docker run --rm -it -v $(PWD):/go/src/github.com/gardener/gardener-extension-registry-cache golang:1.23.6 \
docker run --rm -it -v $(PWD):/go/src/github.com/gardener/gardener-extension-registry-cache golang:1.24.0 \
sh -c "cd /go/src/github.com/gardener/gardener-extension-registry-cache \
&& make tidy generate \
&& chown -R $(shell id -u):$(shell id -g) ."
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gardener/gardener-extension-registry-cache

go 1.23.0
go 1.24.0

require (
github.com/ahmetb/gen-crd-api-reference-docs v0.3.0
Expand Down

0 comments on commit 3527cb9

Please sign in to comment.