From 8d0d010ba58812d6b555c1cb67362088cb26a1f4 Mon Sep 17 00:00:00 2001 From: vmudadla Date: Thu, 27 Jun 2024 18:00:53 -0500 Subject: [PATCH 1/2] Upgrade go.mod package version --- tekton-catalog/pipeline-loops/go.mod | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tekton-catalog/pipeline-loops/go.mod b/tekton-catalog/pipeline-loops/go.mod index 1d539ce0e6..6d9e14a26f 100644 --- a/tekton-catalog/pipeline-loops/go.mod +++ b/tekton-catalog/pipeline-loops/go.mod @@ -4,7 +4,7 @@ go 1.13 require ( github.com/cenkalti/backoff/v4 v4.1.3 - github.com/google/go-cmp v0.5.9 + github.com/google/go-cmp v0.6.0 github.com/hashicorp/go-multierror v1.1.1 github.com/kubeflow/kfp-tekton/tekton-catalog/cache v0.0.0 github.com/kubeflow/kfp-tekton/tekton-catalog/objectstore v0.0.0 @@ -19,6 +19,7 @@ require ( ) replace ( + github.com/go-git/go-git/v5 v5.4.2 => github.com/go-git/go-git/v5 v5.11.0 github.com/kubeflow/kfp-tekton/tekton-catalog/cache => ../cache/ github.com/kubeflow/kfp-tekton/tekton-catalog/objectstore => ../objectstore/ ) From 23ca59ce5156c803d79a6ad356b28d6a97b27f29 Mon Sep 17 00:00:00 2001 From: vmudadla Date: Wed, 10 Jul 2024 10:49:16 -0500 Subject: [PATCH 2/2] Update go.mod package versions --- tekton-catalog/pipeline-loops/go.mod | 1 + 1 file changed, 1 insertion(+) diff --git a/tekton-catalog/pipeline-loops/go.mod b/tekton-catalog/pipeline-loops/go.mod index 6d9e14a26f..b957a9b8b6 100644 --- a/tekton-catalog/pipeline-loops/go.mod +++ b/tekton-catalog/pipeline-loops/go.mod @@ -22,4 +22,5 @@ replace ( github.com/go-git/go-git/v5 v5.4.2 => github.com/go-git/go-git/v5 v5.11.0 github.com/kubeflow/kfp-tekton/tekton-catalog/cache => ../cache/ github.com/kubeflow/kfp-tekton/tekton-catalog/objectstore => ../objectstore/ + gopkg.in/src-d/go-git.v4 v4.13.1 => github.com/go-git/go-git/v5 v5.12.0 )