From 853275f37920134a8337d485c3667e8cc710a45d Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Mon, 4 Dec 2023 07:45:55 -0300 Subject: [PATCH] feat(deps): update go-github to v57 Signed-off-by: Carlos Alexandro Becker --- go.mod | 2 +- go.sum | 4 ++-- internal/client/github.go | 2 +- internal/client/github_test.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 1064da39c30..2f2816167b3 100644 --- a/go.mod +++ b/go.mod @@ -25,7 +25,7 @@ require ( github.com/distribution/distribution/v3 v3.0.0-20221021092657-c47a966fded8 github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible github.com/google/go-containerregistry v0.17.0 - github.com/google/go-github/v56 v56.0.0 + github.com/google/go-github/v57 v57.0.0 github.com/google/ko v0.15.1 github.com/google/uuid v1.4.0 github.com/goreleaser/fileglob v1.3.0 diff --git a/go.sum b/go.sum index 03347428ff9..62d7bbd70d2 100644 --- a/go.sum +++ b/go.sum @@ -499,8 +499,8 @@ 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-containerregistry v0.17.0 h1:5p+zYs/R4VGHkhyvgWurWrpJ2hW4Vv9fQI+GzdcwXLk= github.com/google/go-containerregistry v0.17.0/go.mod h1:u0qB2l7mvtWVR5kNcbFIhFY1hLbf8eeGapA+vbFDCtQ= -github.com/google/go-github/v56 v56.0.0 h1:TysL7dMa/r7wsQi44BjqlwaHvwlFlqkK8CtBWCX3gb4= -github.com/google/go-github/v56 v56.0.0/go.mod h1:D8cdcX98YWJvi7TLo7zM4/h8ZTx6u6fwGEkCdisopo0= +github.com/google/go-github/v57 v57.0.0 h1:L+Y3UPTY8ALM8x+TV0lg+IEBI+upibemtBD8Q9u7zHs= +github.com/google/go-github/v57 v57.0.0/go.mod h1:s0omdnye0hvK/ecLvpsGfJMiRt85PimQh4oygmLIxHw= 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/google/go-replayers/grpcreplay v1.1.0 h1:S5+I3zYyZ+GQz68OfbURDdt/+cSMqCK1wrvNx7WBzTE= diff --git a/internal/client/github.go b/internal/client/github.go index d3664f25aa4..a320d6545fd 100644 --- a/internal/client/github.go +++ b/internal/client/github.go @@ -13,7 +13,7 @@ import ( "github.com/caarlos0/log" "github.com/charmbracelet/x/exp/ordered" - "github.com/google/go-github/v56/github" + "github.com/google/go-github/v57/github" "github.com/goreleaser/goreleaser/internal/artifact" "github.com/goreleaser/goreleaser/internal/tmpl" "github.com/goreleaser/goreleaser/pkg/config" diff --git a/internal/client/github_test.go b/internal/client/github_test.go index 9e1b558d7d2..5f91f6763ad 100644 --- a/internal/client/github_test.go +++ b/internal/client/github_test.go @@ -13,7 +13,7 @@ import ( "text/template" "time" - "github.com/google/go-github/v56/github" + "github.com/google/go-github/v57/github" "github.com/goreleaser/goreleaser/internal/artifact" "github.com/goreleaser/goreleaser/internal/testctx" "github.com/goreleaser/goreleaser/internal/testlib"