From 7fa75d3691559edb8138a5be410c0eabc91d602c Mon Sep 17 00:00:00 2001 From: Tony Davidson Date: Fri, 21 Jun 2024 13:44:06 +0100 Subject: [PATCH] Dependency Update: bump go from 1.19 to 1.21@latest (#150) This commit will update go from go1.19 to go1.21@latest Dependency Update: bump go from 1.19 to 1.21 This commit will change the files to specify a micro version 1.21.9 instead of a major version with @latest tag Dependency Update: bump go from 1.19 to 1.21 This commit will revert line 113 to use the major version as a file reference. Dependency Update: bump go from 1.19 to 1.21@latest This commit changed the minor version from 1.21.9 to major version 1.21 on go.mod file. Signed-off-by: tonyxrmdavidson --- Makefile | 6 +++--- go.mod | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c0b6e681..a5f9b6b6 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST))) PROJECT_PATH := $(patsubst %/,%,$(dir $(MKFILE_PATH))) PROJECT_BIN := $(PROJECT_PATH)/bin -GO := $(PROJECT_BIN)/go1.19 +GO := $(PROJECT_BIN)/go1.21.9 # add tools bin directory PATH := $(PROJECT_BIN):$(PATH) @@ -109,8 +109,8 @@ clean/odh: rm -Rf ./model-registry bin/go: - GOBIN=$(PROJECT_BIN) go install golang.org/dl/go1.19@latest - $(PROJECT_BIN)/go1.19 download + GOBIN=$(PROJECT_BIN) go install golang.org/dl/go1.21.9@latest + $(PROJECT_BIN)/go1.21.9 download bin/protoc: ./scripts/install_protoc.sh diff --git a/go.mod b/go.mod index 7ab47dc4..9ae3bcaf 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/kubeflow/model-registry -go 1.19 +go 1.21 require ( github.com/go-chi/chi/v5 v5.0.12