summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorIgor Drozdov <idrozdov@gitlab.com>2022-08-05 15:51:41 +0200
committerIgor Drozdov <idrozdov@gitlab.com>2022-08-05 17:44:56 +0200
commit2c18767176ff7bade7a2d745b0e95f1687c27b5d (patch)
treef7314573ecfacc671a978e44f234fb7097200314 /cmd
parentfe170537724ba95c7a7b776e1f02f8c19bfaa377 (diff)
downloadgitlab-shell-2c18767176ff7bade7a2d745b0e95f1687c27b5d.tar.gz
Update Gitaly to v15
This commit also excludes gitlab-shell from dependencies: Gitaly specifies Gitlab Shell as a dependency as well in order to use gitlabnet client to perform API endpoints to Gitlab Rails. As a result, Gitlab Shell requires Gitaly -> Gitaly requires an older version of Gitlab Shell -> that version requires an older version of Gitlab Shell, etc. Let's use exclude to break the chain earlier
Diffstat (limited to 'cmd')
-rw-r--r--cmd/gitlab-sshd/acceptance_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/gitlab-sshd/acceptance_test.go b/cmd/gitlab-sshd/acceptance_test.go
index 31f87a5..e36c629 100644
--- a/cmd/gitlab-sshd/acceptance_test.go
+++ b/cmd/gitlab-sshd/acceptance_test.go
@@ -22,8 +22,8 @@ import (
"github.com/mikesmitty/edkey"
"github.com/pires/go-proxyproto"
"github.com/stretchr/testify/require"
- gitalyClient "gitlab.com/gitlab-org/gitaly/v14/client"
- pb "gitlab.com/gitlab-org/gitaly/v14/proto/go/gitalypb"
+ gitalyClient "gitlab.com/gitlab-org/gitaly/v15/client"
+ pb "gitlab.com/gitlab-org/gitaly/v15/proto/go/gitalypb"
"gitlab.com/gitlab-org/gitlab-shell/v14/internal/testhelper"
"golang.org/x/crypto/ssh"
)