Skip to content

Commit

Permalink
Bump golang from 1.21.1 to 1.21.2 (#60)
Browse files Browse the repository at this point in the history
* Bump golang from 1.21.1 to 1.21.2

Bumps golang from 1.21.1 to 1.21.2.

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

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

* Update the go version in 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: ialidzhikov <[email protected]>
  • Loading branch information
dependabot[bot] and ialidzhikov authored Oct 9, 2023
1 parent b43c0b5 commit 272e5c2
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 @@ -15,7 +15,7 @@ gardener-extension-registry-cache:
release:
steps:
verify:
image: 'golang:1.21.1'
image: 'golang:1.21.2'
traits:
version:
preprocess: 'finalize'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
############# builder
FROM golang:1.21.1 AS builder
FROM golang:1.21.2 AS builder

WORKDIR /go/src/github.com/gardener/gardener-extension-registry-cache
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ generate: $(CONTROLLER_GEN) $(GEN_CRD_API_REFERENCE_DOCS) $(HELM) $(YQ)

.PHONE: generate-in-docker
generate-in-docker:
docker run --rm -it -v $(PWD):/go/src/github.com/gardener/gardener-extension-registry-cache golang:1.21.1 \
docker run --rm -it -v $(PWD):/go/src/github.com/gardener/gardener-extension-registry-cache golang:1.21.2 \
sh -c "cd /go/src/github.com/gardener/gardener-extension-registry-cache \
&& make revendor generate \
&& chown -R $(shell id -u):$(shell id -g) ."
Expand Down

0 comments on commit 272e5c2

Please sign in to comment.