From c1aea8c2cc01f9f6367f9dcbc7bdbb7fd65f1b35 Mon Sep 17 00:00:00 2001 From: Ismail Alidzhikov Date: Fri, 15 Sep 2023 17:32:45 +0300 Subject: [PATCH] Use `1.21.0` instead of `1.21` as module version (#39) * Use `1.21.0` instead of `1.21` as module version * Update goimports-reviser from v3.4.1 to v3.4.5 goimports-reviser@v3.4.5 contains a fix for https://github.com/incu6us/goimports-reviser/issues/129. --- Makefile | 4 ++++ go.mod | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 099d4b4c..418eac49 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,10 @@ PARALLEL_E2E_TESTS := 2 ######################################### TOOLS_DIR := hack/tools +# goimports-reviser@v3.4.5 contains the fix for https://github.com/incu6us/goimports-reviser/issues/129. +# +# TODO(ialidzhikov): Drop this version overwrite when the registry-cache extension vendors https://github.com/gardener/gardener/pull/8450. +GOIMPORTSREVISER_VERSION := v3.4.5 include $(REPO_ROOT)/vendor/github.com/gardener/gardener/hack/tools.mk ################################################################# diff --git a/go.mod b/go.mod index f474118a..44399068 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gardener/gardener-extension-registry-cache -go 1.21 +go 1.21.0 require ( github.com/ahmetb/gen-crd-api-reference-docs v0.3.0