Skip to content

Commit b9e479f

Browse files
authored
Update go-github to v68 (#412)
1 parent d6cf472 commit b9e479f

11 files changed

+10
-13
lines changed

appconfig/appconfig.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"net/http"
2626
"strings"
2727

28-
"github.com/google/go-github/v67/github"
28+
"github.com/google/go-github/v68/github"
2929
"github.com/pkg/errors"
3030
"github.com/rs/zerolog"
3131
)

appconfig/appconfig_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"path/filepath"
2222
"testing"
2323

24-
"github.com/google/go-github/v67/github"
24+
"github.com/google/go-github/v68/github"
2525
)
2626

2727
const (

example/issue_comment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"fmt"
2121
"strings"
2222

23-
"github.com/google/go-github/v67/github"
23+
"github.com/google/go-github/v68/github"
2424
"github.com/palantir/go-githubapp/githubapp"
2525
"github.com/pkg/errors"
2626
"github.com/rs/zerolog"

githubapp/caching_client_creator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ package githubapp
1717
import (
1818
"fmt"
1919

20-
"github.com/google/go-github/v67/github"
20+
"github.com/google/go-github/v68/github"
2121
lru "github.com/hashicorp/golang-lru"
2222
"github.com/pkg/errors"
2323
"github.com/shurcooL/githubv4"

githubapp/client_creator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"time"
2525

2626
"github.com/bradleyfalzon/ghinstallation/v2"
27-
"github.com/google/go-github/v67/github"
27+
"github.com/google/go-github/v68/github"
2828
"github.com/gregjones/httpcache"
2929
"github.com/pkg/errors"
3030
"github.com/shurcooL/githubv4"

githubapp/context.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ package githubapp
1717
import (
1818
"context"
1919

20-
"github.com/google/go-github/v67/github"
20+
"github.com/google/go-github/v68/github"
2121
"github.com/rs/zerolog"
2222
)
2323

githubapp/context_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"encoding/json"
2121
"testing"
2222

23-
"github.com/google/go-github/v67/github"
23+
"github.com/google/go-github/v68/github"
2424
"github.com/rs/zerolog"
2525
)
2626

githubapp/dispatcher.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"fmt"
2020
"net/http"
2121

22-
"github.com/google/go-github/v67/github"
22+
"github.com/google/go-github/v68/github"
2323
"github.com/pkg/errors"
2424
"github.com/rcrowley/go-metrics"
2525
"github.com/rs/zerolog"

githubapp/installations.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"fmt"
2020
"net/http"
2121

22-
"github.com/google/go-github/v67/github"
22+
"github.com/google/go-github/v68/github"
2323
"github.com/pkg/errors"
2424
)
2525

go.mod

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23.0
55
require (
66
github.com/alexedwards/scs v1.4.1
77
github.com/bradleyfalzon/ghinstallation/v2 v2.13.0
8-
github.com/google/go-github/v67 v67.0.0
8+
github.com/google/go-github/v68 v68.0.0
99
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
1010
github.com/hashicorp/golang-lru v0.6.0
1111
github.com/patrickmn/go-cache v2.1.0+incompatible
@@ -19,7 +19,6 @@ require (
1919

2020
require (
2121
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
22-
github.com/google/go-github/v68 v68.0.0 // indirect
2322
github.com/google/go-querystring v1.1.0 // indirect
2423
github.com/kr/pretty v0.3.0 // indirect
2524
github.com/mattn/go-colorable v0.1.13 // indirect

go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ github.com/golang-jwt/jwt/v4 v4.5.1/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w
1010
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
1111
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
1212
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
13-
github.com/google/go-github/v67 v67.0.0 h1:g11NDAmfaBaCO8qYdI9fsmbaRipHNWRIU/2YGvlh4rg=
14-
github.com/google/go-github/v67 v67.0.0/go.mod h1:zH3K7BxjFndr9QSeFibx4lTKkYS3K9nDanoI1NjaOtY=
1513
github.com/google/go-github/v68 v68.0.0 h1:ZW57zeNZiXTdQ16qrDiZ0k6XucrxZ2CGmoTvcCyQG6s=
1614
github.com/google/go-github/v68 v68.0.0/go.mod h1:K9HAUBovM2sLwM408A18h+wd9vqdLOEqTUCbnRIcx68=
1715
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=

0 commit comments

Comments
 (0)