Skip to content

Commit

Permalink
Merge pull request #193 from masutaka/bump-go-github-to-v63
Browse files Browse the repository at this point in the history
Bump google/go-github to v63
  • Loading branch information
masutaka authored Jul 18, 2024
2 parents b70656e + f775476 commit 09232fb
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/masutaka/github-nippou/v4
go 1.22

require (
github.com/google/go-github/v60 v60.0.0
github.com/google/go-github/v63 v63.0.0
github.com/rakyll/statik v0.1.7
github.com/skratchdot/open-golang v0.0.0-20190402232053-79abb63cd66e
github.com/spf13/cobra v1.8.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t
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/v60 v60.0.0 h1:oLG98PsLauFvvu4D/YPxq374jhSxFYdzQGNCyONLfn8=
github.com/google/go-github/v60 v60.0.0/go.mod h1:ByhX2dP9XT9o/ll2yXAu2VD8l5eNVg8hD4Cr0S/LmQk=
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-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
Expand Down
2 changes: 1 addition & 1 deletion lib/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"time"

"github.com/google/go-github/v60/github"
"github.com/google/go-github/v63/github"
)

// Events represents a structure for fetching user-related events from the GitHub API.
Expand Down
2 changes: 1 addition & 1 deletion lib/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"text/template"

"github.com/google/go-github/v60/github"
"github.com/google/go-github/v63/github"
)

// Format is Formatter
Expand Down
2 changes: 1 addition & 1 deletion lib/format_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"testing"

"github.com/google/go-github/v60/github"
"github.com/google/go-github/v63/github"
"github.com/masutaka/github-nippou/v4/lib"
)

Expand Down
2 changes: 1 addition & 1 deletion lib/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"
"time"

"github.com/google/go-github/v60/github"
"github.com/google/go-github/v63/github"
)

// List is a struct for collecting GitHub activities.
Expand Down
2 changes: 1 addition & 1 deletion lib/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
// Import ./config/*
_ "github.com/masutaka/github-nippou/v4/statik"

"github.com/google/go-github/v60/github"
"github.com/google/go-github/v63/github"
"github.com/rakyll/statik/fs"
"golang.org/x/oauth2"
"gopkg.in/yaml.v3"
Expand Down

0 comments on commit 09232fb

Please sign in to comment.