From e2ea9a1980f765f668d4a42d1f9108db777bf86d Mon Sep 17 00:00:00 2001 From: Jared Allard Date: Fri, 23 Aug 2024 16:22:29 -0400 Subject: [PATCH] chore(deps): use go-github v64 --- go.mod | 1 - go.sum | 5 +---- internal/plugin/license_test.go | 2 +- internal/plugin/plugin.go | 2 +- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/go.mod b/go.mod index d262b21..8950e86 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,6 @@ module github.com/rgst-io/stencil-golang go 1.22 require ( - github.com/google/go-github/v63 v63.0.0 github.com/google/go-github/v64 v64.0.0 go.rgst.io/stencil v0.9.0 gotest.tools/v3 v3.5.1 diff --git a/go.sum b/go.sum index 0c42900..4d982e1 100644 --- a/go.sum +++ b/go.sum @@ -21,8 +21,7 @@ github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6 github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-github/v63 v63.0.0 h1:13xwK/wk9alSokujB9lJkuzdmQuVn2QCPeck76wR3nE= -github.com/google/go-github/v63 v63.0.0/go.mod h1:IqbcrgUmIcEaioWrGYei/09o+ge5vhffGOcxrO0AfmA= +github.com/google/go-github/v64 v64.0.0 h1:4G61sozmY3eiPAjjoOHponXDBONm+utovTKbyUb2Qdg= github.com/google/go-github/v64 v64.0.0/go.mod h1:xB3vqMQNdHzilXBiO2I+M7iEFtHf+DP/omBOv6tQzVo= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= @@ -64,8 +63,6 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -go.rgst.io/stencil v0.8.0 h1:pB32EHPF/JTMSjSLa60JUNR/HI8AAw1lOxceNIB3KW0= -go.rgst.io/stencil v0.8.0/go.mod h1:qhS5B8U5wimT0rBbU2oGbh6i4CO51DdU1r9gj5/YeVo= go.rgst.io/stencil v0.9.0 h1:/Et2I6YcQx6F4tCmiQSVje1ra0BrJ/KB0YkOO9afEls= go.rgst.io/stencil v0.9.0/go.mod h1:qyFDV90yjeEUEQdoovZsMLJdY0kvUclvvs+8ZM/x7Ms= golang.org/x/exp v0.0.0-20240529005216-23cca8864a10 h1:vpzMC/iZhYFAjJzHU0Cfuq+w1vLLsF2vLkDrPjzKYck= diff --git a/internal/plugin/license_test.go b/internal/plugin/license_test.go index 8662be7..c503b87 100644 --- a/internal/plugin/license_test.go +++ b/internal/plugin/license_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/google/go-github/v63/github" + "github.com/google/go-github/v64/github" "github.com/rgst-io/stencil-golang/internal/plugin" "go.rgst.io/stencil/pkg/extensions/apiv1" "gotest.tools/v3/assert" diff --git a/internal/plugin/plugin.go b/internal/plugin/plugin.go index 89f7c2e..a93e74d 100644 --- a/internal/plugin/plugin.go +++ b/internal/plugin/plugin.go @@ -22,7 +22,7 @@ import ( "context" "fmt" - "github.com/google/go-github/v63/github" + "github.com/google/go-github/v64/github" "go.rgst.io/stencil/pkg/extensions/apiv1" )