Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Renovate Bot <gitlab-bot@gitlab.com>2023-04-24 20:24:19 +0300
committerGitLab Renovate Bot <gitlab-bot@gitlab.com>2023-04-24 20:24:19 +0300
commit1ba9c51a19deb4dd3f7c5116a05a2d19fb13eed5 (patch)
tree3fad9ccaff27397d34c20823fc97bed0903f0d10 /internal/gitlab/client
parent7513feadbde8aecf64e8364c8b2fef90edfa2e50 (diff)
go: Update module github.com/golang-jwt/jwt/v4 to v5
Diffstat (limited to 'internal/gitlab/client')
-rw-r--r--internal/gitlab/client/gitlabnet.go2
-rw-r--r--internal/gitlab/client/gitlabnet_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/gitlab/client/gitlabnet.go b/internal/gitlab/client/gitlabnet.go
index 9655d32b5..93d8cd8b5 100644
--- a/internal/gitlab/client/gitlabnet.go
+++ b/internal/gitlab/client/gitlabnet.go
@@ -10,7 +10,7 @@ import (
"strings"
"time"
- "github.com/golang-jwt/jwt/v4"
+ "github.com/golang-jwt/jwt/v5"
"gitlab.com/gitlab-org/labkit/log"
)
diff --git a/internal/gitlab/client/gitlabnet_test.go b/internal/gitlab/client/gitlabnet_test.go
index a6695ee5d..40ca7c645 100644
--- a/internal/gitlab/client/gitlabnet_test.go
+++ b/internal/gitlab/client/gitlabnet_test.go
@@ -8,7 +8,7 @@ import (
"testing"
"time"
- "github.com/golang-jwt/jwt/v4"
+ "github.com/golang-jwt/jwt/v5"
"github.com/stretchr/testify/require"
"gitlab.com/gitlab-org/gitaly/v15/internal/testhelper"
)