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

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2021-08-03 14:54:37 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2021-08-04 07:57:46 +0300
commit436803f5975eefd697c83d6ad6e5c43360be8310 (patch)
tree42e28f112bb11ff1a5495d47fe61e74a458bb5bf /internal/auth
parent5e7445879f12a8a35cfda6d78c5994653f7ca1b0 (diff)
build: replace jwt-go with maintained fork
Changelog: other
Diffstat (limited to 'internal/auth')
-rw-r--r--internal/auth/auth_code.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/auth/auth_code.go b/internal/auth/auth_code.go
index d2fea5a9..328ca00c 100644
--- a/internal/auth/auth_code.go
+++ b/internal/auth/auth_code.go
@@ -10,7 +10,7 @@ import (
"fmt"
"io"
- "github.com/dgrijalva/jwt-go"
+ "github.com/golang-jwt/jwt"
"github.com/gorilla/securecookie"
"golang.org/x/crypto/hkdf"
)