Skip to content

Commit

Permalink
Update module github.com/google/go-github/v48 to v49 (#291)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 7, 2023
1 parent 214a435 commit 212334f
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require (
github.com/cenkalti/backoff/v4 v4.2.0
github.com/golang/mock v1.6.0
github.com/google/go-cmp v0.5.9
github.com/google/go-github/v48 v48.2.0
github.com/google/go-github/v49 v49.0.0
github.com/google/wire v0.5.0
github.com/shurcooL/githubv4 v0.0.0-20221229060216-a8d4a561cc93
github.com/shurcooL/graphql v0.0.0-20181231061246-d48a9a75455f // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
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/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/google/subcommands v1.0.1/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk=
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/client/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net/url"
"os"

"github.com/google/go-github/v48/github"
"github.com/google/go-github/v49/github"
"github.com/google/wire"
"github.com/shurcooL/githubv4"
"golang.org/x/oauth2"
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/client/github_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net/http/httptest"
"testing"

"github.com/google/go-github/v48/github"
"github.com/google/go-github/v49/github"
)

func TestNewGitHubClient(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/client/mock_client/mock_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/github/fork.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"

"github.com/cenkalti/backoff/v4"
"github.com/google/go-github/v48/github"
"github.com/google/go-github/v49/github"
"github.com/int128/ghcp/pkg/git"
"github.com/shurcooL/githubv4"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/gitobject.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"fmt"

"github.com/google/go-github/v48/github"
"github.com/google/go-github/v49/github"
"github.com/shurcooL/githubv4"

"github.com/int128/ghcp/pkg/git"
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/gitobject_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"

"github.com/golang/mock/gomock"
"github.com/google/go-github/v48/github"
"github.com/google/go-github/v49/github"
"github.com/int128/ghcp/pkg/git"
"github.com/int128/ghcp/pkg/github/client/mock_client"
testingLogger "github.com/int128/ghcp/pkg/logger/testing"
Expand Down
2 changes: 1 addition & 1 deletion pkg/github/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"os"

"github.com/google/go-github/v48/github"
"github.com/google/go-github/v49/github"
"github.com/int128/ghcp/pkg/git"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/github/release_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/golang/mock/gomock"
"github.com/google/go-cmp/cmp"
"github.com/google/go-github/v48/github"
"github.com/google/go-github/v49/github"
"github.com/int128/ghcp/pkg/git"
"github.com/int128/ghcp/pkg/github/client/mock_client"
testingLogger "github.com/int128/ghcp/pkg/logger/testing"
Expand Down

0 comments on commit 212334f

Please sign in to comment.