From 053f4552d94ce1434d47757bf71d637238007c9c Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Wed, 4 Jan 2023 15:24:59 +0100 Subject: [PATCH] versionsapi: fix semver dependency Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- go.mod | 2 +- internal/versionsapi/cli/list.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 9df026fbe..6cfd958ab 100644 --- a/go.mod +++ b/go.mod @@ -257,7 +257,7 @@ require ( github.com/prometheus/common v0.37.0 // indirect github.com/prometheus/procfs v0.8.0 // indirect github.com/rivo/uniseg v0.4.3 // indirect - github.com/rogpeppe/go-internal v1.8.1 + github.com/rogpeppe/go-internal v1.8.1 // indirect github.com/rubenv/sql-migrate v1.1.2 // indirect github.com/russross/blackfriday v1.6.0 // indirect github.com/sassoftware/relic v0.0.0-20210427151427-dfb082b79b74 // indirect diff --git a/internal/versionsapi/cli/list.go b/internal/versionsapi/cli/list.go index 4b1d4eb70..8a4d02647 100644 --- a/internal/versionsapi/cli/list.go +++ b/internal/versionsapi/cli/list.go @@ -14,9 +14,9 @@ import ( "github.com/edgelesssys/constellation/v2/internal/logger" "github.com/edgelesssys/constellation/v2/internal/versionsapi" verclient "github.com/edgelesssys/constellation/v2/internal/versionsapi/client" - "github.com/rogpeppe/go-internal/semver" "github.com/spf13/cobra" "go.uber.org/zap/zapcore" + "golang.org/x/mod/semver" ) func newListCmd() *cobra.Command {