Skip to content

Commit

Permalink
fix golang-jwt version
Browse files Browse the repository at this point in the history
  • Loading branch information
dokimiki committed May 21, 2023
1 parent d34e217 commit 4bcb67a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cookbook/jwt/custom-claims/server.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/golang-jwt/jwt/v4"
"github.com/golang-jwt/jwt/v5"

Check failure on line 4 in cookbook/jwt/custom-claims/server.go

View workflow job for this annotation

GitHub Actions / ubuntu-latest @ Go 1.19

no required module provides package github.com/golang-jwt/jwt/v5; to add it:
echojwt "github.com/labstack/echo-jwt/v4"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
Expand Down
2 changes: 1 addition & 1 deletion cookbook/jwt/user-defined-keyfunc/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
echojwt "github.com/labstack/echo-jwt/v4"
"net/http"

"github.com/golang-jwt/jwt/v4"
"github.com/golang-jwt/jwt/v5"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/lestrrat-go/jwx/jwk"
Expand Down

0 comments on commit 4bcb67a

Please sign in to comment.