diff --git a/go.mod b/go.mod index 82fc3d3..02c58b3 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/thegeeklab/drone-github-comment go 1.19 require ( - github.com/google/go-github/v48 v48.2.0 + github.com/google/go-github/v49 v49.0.0 github.com/joho/godotenv v1.4.0 github.com/sirupsen/logrus v1.9.0 github.com/thegeeklab/drone-plugin-lib/v2 v2.2.1 diff --git a/go.sum b/go.sum index 9546cfb..1a204a5 100644 --- a/go.sum +++ b/go.sum @@ -10,8 +10,8 @@ github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiu github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 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-github/v48 v48.2.0 h1:68puzySE6WqUY9KWmpOsDEQfDZsso98rT6pZcz9HqcE= -github.com/google/go-github/v48 v48.2.0/go.mod h1:dDlehKBDo850ZPvCTK0sEqTCVWcrGl2LcDiajkYi89Y= +github.com/google/go-github/v49 v49.0.0 h1:vSz1fnOeGztFxDe48q0RCOrd8Cg4o8INcZBPVpGPNaY= +github.com/google/go-github/v49 v49.0.0/go.mod h1:MUUzHPrhGniB6vUKa27y37likpipzG+BXXJbG04J334= 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.4.0 h1:3l4+N6zfMWnkbPEXKng2o2/MR5mSwTrBih4ZEkkz1lg= diff --git a/plugin/comment.go b/plugin/comment.go index bee0661..1a37c02 100644 --- a/plugin/comment.go +++ b/plugin/comment.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v49/github" ) // Release holds ties the drone env data and github client together. diff --git a/plugin/impl.go b/plugin/impl.go index 4b5d7af..613645f 100644 --- a/plugin/impl.go +++ b/plugin/impl.go @@ -7,7 +7,7 @@ import ( "net/url" "strings" - "github.com/google/go-github/v48/github" + "github.com/google/go-github/v49/github" "github.com/sirupsen/logrus" "golang.org/x/oauth2" )