Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Update module github.com/google/go-github/v35 to v36 (#38)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Patrick Hoefler <patrick.hoefler@gmail.com>
  • Loading branch information
3 people committed Jun 27, 2021
1 parent a9849d9 commit b5a83ed
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -3,7 +3,7 @@ module github.com/patrickhoefler/ghtop
go 1.15

require (
github.com/google/go-github/v35 v35.3.0
github.com/google/go-github/v36 v36.0.0
github.com/mattn/go-shellwords v1.0.12
github.com/spf13/cobra v1.1.3
)
4 changes: 2 additions & 2 deletions go.sum
Expand Up @@ -59,8 +59,8 @@ github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5a
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-github/v35 v35.3.0 h1:fU+WBzuukn0VssbayTT+Zo3/ESKX9JYWjbZTLOTEyho=
github.com/google/go-github/v35 v35.3.0/go.mod h1:yWB7uCcVWaUbUP74Aq3whuMySRMatyRmq5U9FTNlbio=
github.com/google/go-github/v36 v36.0.0 h1:ndCzM616/oijwufI7nBRa+5eZHLldT+4yIB68ib5ogs=
github.com/google/go-github/v36 v36.0.0/go.mod h1:LFlKC047IOqiglRGNqNb9s/iAPTnnjtlshm+bxp+kwk=
github.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk=
github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck=
github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=
Expand Down
2 changes: 1 addition & 1 deletion internal/fetching/fetcher.go
@@ -1,6 +1,6 @@
package fetching

import "github.com/google/go-github/v35/github"
import "github.com/google/go-github/v36/github"

// Fetcher defines the interface for repo fetchers
type Fetcher interface {
Expand Down
2 changes: 1 addition & 1 deletion internal/fetching/githubreposearchclient.go
@@ -1,7 +1,7 @@
package fetching

import (
"github.com/google/go-github/v35/github"
"github.com/google/go-github/v36/github"
)

// NewGitHubRepoSearchClient returns a new GitHub repo fetcher
Expand Down
2 changes: 1 addition & 1 deletion internal/fetching/githubreposearchclient_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"github.com/google/go-github/v35/github"
"github.com/google/go-github/v36/github"
)

func TestNewGitHubRepoSearchClient(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/fetching/mockreposearchclient.go
Expand Up @@ -3,7 +3,7 @@ package fetching
import (
"context"

"github.com/google/go-github/v35/github"
"github.com/google/go-github/v36/github"
)

// NewMockRepoSearchClient returns a new mock repo fetcher for testing
Expand Down
2 changes: 1 addition & 1 deletion internal/fetching/mockreposearchclient_test.go
Expand Up @@ -5,7 +5,7 @@ import (
"reflect"
"testing"

"github.com/google/go-github/v35/github"
"github.com/google/go-github/v36/github"
)

func TestNewMockRepoSearchClient(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/fetching/reposearchclient.go
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

"github.com/google/go-github/v35/github"
"github.com/google/go-github/v36/github"
)

const maxReposPerPage = 100
Expand Down
2 changes: 1 addition & 1 deletion internal/fetching/reposearchclient_test.go
Expand Up @@ -3,7 +3,7 @@ package fetching
import (
"testing"

"github.com/google/go-github/v35/github"
"github.com/google/go-github/v36/github"
)

func Test_newRepoSearchClient(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/fetching/repositorieser.go
Expand Up @@ -3,7 +3,7 @@ package fetching
import (
"context"

"github.com/google/go-github/v35/github"
"github.com/google/go-github/v36/github"
)

type repositorieser interface {
Expand Down

0 comments on commit b5a83ed

Please sign in to comment.