Skip to content

Commit b3e2ed9

Browse files
authored
Upgrade google/go-github to v70 (#440)
1 parent 6962804 commit b3e2ed9

11 files changed

+15
-12
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/v69/github"
28+
"github.com/google/go-github/v70/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/v69/github"
24+
"github.com/google/go-github/v70/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/v69/github"
23+
"github.com/google/go-github/v70/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/v69/github"
20+
"github.com/google/go-github/v70/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/v69/github"
27+
"github.com/google/go-github/v70/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/v69/github"
20+
"github.com/google/go-github/v70/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/v69/github"
23+
"github.com/google/go-github/v70/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/v69/github"
22+
"github.com/google/go-github/v70/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/v69/github"
22+
"github.com/google/go-github/v70/github"
2323
"github.com/pkg/errors"
2424
)
2525

go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
require (
66
github.com/alexedwards/scs v1.4.1
77
github.com/bradleyfalzon/ghinstallation/v2 v2.14.0
8-
github.com/google/go-github/v69 v69.2.0
8+
github.com/google/go-github/v70 v70.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,6 +19,7 @@ require (
1919

2020
require (
2121
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
22+
github.com/google/go-github/v69 v69.2.0 // indirect
2223
github.com/google/go-querystring v1.1.0 // indirect
2324
github.com/kr/pretty v0.3.0 // indirect
2425
github.com/mattn/go-colorable v0.1.13 // indirect

go.sum

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5x
88
github.com/golang-jwt/jwt/v4 v4.5.1 h1:JdqV9zKUdtaa9gdPlywC3aeoEsR681PlKC+4F5gQgeo=
99
github.com/golang-jwt/jwt/v4 v4.5.1/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0=
1010
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
11-
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
12-
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
11+
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
12+
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
1313
github.com/google/go-github/v69 v69.2.0 h1:wR+Wi/fN2zdUx9YxSmYE0ktiX9IAR/BeePzeaUUbEHE=
1414
github.com/google/go-github/v69 v69.2.0/go.mod h1:xne4jymxLR6Uj9b7J7PyTpkMYstEMMwGZa0Aehh1azM=
15+
github.com/google/go-github/v70 v70.0.0 h1:/tqCp5KPrcvqCc7vIvYyFYTiCGrYvaWoYMGHSQbo55o=
16+
github.com/google/go-github/v70 v70.0.0/go.mod h1:xBUZgo8MI3lUL/hwxl3hlceJW1U8MVnXP3zUyI+rhQY=
1517
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
1618
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
1719
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 h1:+ngKgrYPPJrOjhax5N+uePQ0Fh1Z7PheYoUI/0nzkPA=

0 commit comments

Comments
 (0)