diff --git a/go.mod b/go.mod index d1840b5..455788d 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/thegeeklab/wp-github-comment go 1.21 require ( - github.com/google/go-github/v54 v54.0.0 + github.com/google/go-github/v55 v55.0.0 github.com/rs/zerolog v1.30.0 github.com/thegeeklab/wp-plugin-go v1.0.1 github.com/urfave/cli/v2 v2.25.7 diff --git a/go.sum b/go.sum index d694f46..a65a6f2 100644 --- a/go.sum +++ b/go.sum @@ -16,8 +16,8 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-github/v54 v54.0.0 h1:OZdXwow4EAD5jEo5qg+dGFH2DpkyZvVsAehjvJuUL/c= -github.com/google/go-github/v54 v54.0.0/go.mod h1:Sw1LXWHhXRZtzJ9LI5fyJg9wbQzYvFhW8W5P2yaAQ7s= +github.com/google/go-github/v55 v55.0.0 h1:4pp/1tNMB9X/LuAhs5i0KQAE40NmiR/y6prLNb9x9cg= +github.com/google/go-github/v55 v55.0.0/go.mod h1:JLahOTA1DnXzhxEymmFF5PP2tSS9JVNj68mSZNDwskA= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= diff --git a/plugin/comment.go b/plugin/comment.go index 74b37c0..0afe8a7 100644 --- a/plugin/comment.go +++ b/plugin/comment.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/google/go-github/v54/github" + "github.com/google/go-github/v55/github" ) type commentClient struct { diff --git a/plugin/impl.go b/plugin/impl.go index 0f5db80..69e2330 100644 --- a/plugin/impl.go +++ b/plugin/impl.go @@ -8,7 +8,7 @@ import ( "net/url" "strings" - "github.com/google/go-github/v54/github" + "github.com/google/go-github/v55/github" "github.com/rs/zerolog/log" "golang.org/x/oauth2" )