From 1ce1f78148b4a6f073f2bf1abc059841b5251786 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 5 Apr 2023 21:24:19 +0000 Subject: [PATCH] fix(deps): update module github.com/google/go-github/v50 to v51 --- go.mod | 2 +- go.sum | 4 ++-- plugin/comment.go | 2 +- plugin/impl.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 3315d46..8c28955 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/thegeeklab/drone-github-comment go 1.20 require ( - github.com/google/go-github/v50 v50.2.0 + github.com/google/go-github/v51 v51.0.0 github.com/joho/godotenv v1.5.1 github.com/sirupsen/logrus v1.9.0 github.com/thegeeklab/drone-plugin-lib/v2 v2.3.1 diff --git a/go.sum b/go.sum index 84a0885..e4afabd 100644 --- a/go.sum +++ b/go.sum @@ -15,8 +15,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/v50 v50.2.0 h1:j2FyongEHlO9nxXLc+LP3wuBSVU9mVxfpdYUexMpIfk= -github.com/google/go-github/v50 v50.2.0/go.mod h1:VBY8FB6yPIjrtKhozXv4FQupxKLS6H4m6xFZlT43q8Q= +github.com/google/go-github/v51 v51.0.0 h1:KCjsbgPV28VoRftdP+K2mQL16jniUsLAJknsOVKwHyU= +github.com/google/go-github/v51 v51.0.0/go.mod h1:kZj/rn/c1lSUbr/PFWl2hhusPV7a5XNYKcwPrd5L3Us= 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 20bd34a..03a5b99 100644 --- a/plugin/comment.go +++ b/plugin/comment.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/google/go-github/v50/github" + "github.com/google/go-github/v51/github" ) // Release holds ties the drone env data and github client together. diff --git a/plugin/impl.go b/plugin/impl.go index 60469a5..e080400 100644 --- a/plugin/impl.go +++ b/plugin/impl.go @@ -8,7 +8,7 @@ import ( "net/url" "strings" - "github.com/google/go-github/v50/github" + "github.com/google/go-github/v51/github" "github.com/sirupsen/logrus" "golang.org/x/oauth2" )