Skip to content

Commit

Permalink
Bump golang from 1.23.1 to 1.23.2 (#263)
Browse files Browse the repository at this point in the history
* Bump golang from 1.23.1 to 1.23.2

Bumps golang from 1.23.1 to 1.23.2.

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

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

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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ismail Alidzhikov <i.alidjikov@gmail.com>
  • Loading branch information
dependabot[bot] and ialidzhikov authored Oct 2, 2024
1 parent 2ce14cf commit e29193d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci/pipeline_definitions
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ gardener-extension-registry-cache:
release:
steps:
verify:
image: 'golang:1.23.1'
image: 'golang:1.23.2'
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.1 AS builder
FROM golang:1.23.2 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.1 \
docker run --rm -it -v $(PWD):/go/src/github.com/gardener/gardener-extension-registry-cache golang:1.23.2 \
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

0 comments on commit e29193d

Please sign in to comment.