Skip to content

Commit 2114490

Browse files
authored
Bump go-github from v67 to v68 in /scrape (#3398)
1 parent 98d4f50 commit 2114490

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

scrape/apps.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"strings"
1919

2020
"github.com/PuerkitoBio/goquery"
21-
"github.com/google/go-github/v67/github"
21+
"github.com/google/go-github/v68/github"
2222
)
2323

2424
// AppRestrictionsEnabled returns whether the specified organization has

scrape/apps_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/google/go-cmp/cmp"
8-
"github.com/google/go-github/v67/github"
8+
"github.com/google/go-github/v68/github"
99
)
1010

1111
func Test_AppRestrictionsEnabled(t *testing.T) {
@@ -95,7 +95,7 @@ func Test_CreateApp(t *testing.T) {
9595
})
9696

9797
if _, err := client.CreateApp(&AppManifest{
98-
URL: github.String("https://example.com"),
98+
URL: github.Ptr("https://example.com"),
9999
HookAttributes: map[string]string{
100100
"url": "https://example.com/hook",
101101
},
@@ -113,7 +113,7 @@ func Test_CreateAppWithOrg(t *testing.T) {
113113
})
114114

115115
if _, err := client.CreateApp(&AppManifest{
116-
URL: github.String("https://example.com"),
116+
URL: github.Ptr("https://example.com"),
117117
HookAttributes: map[string]string{
118118
"url": "https://example.com/hook",
119119
},

scrape/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.22.0
77
require (
88
github.com/PuerkitoBio/goquery v1.9.2
99
github.com/google/go-cmp v0.6.0
10-
github.com/google/go-github/v67 v67.0.0
10+
github.com/google/go-github/v68 v68.0.0
1111
github.com/xlzd/gotp v0.1.0
1212
golang.org/x/net v0.32.0
1313
)

scrape/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ github.com/andybalholm/cascadia v1.3.2/go.mod h1:7gtRlve5FxPPgIgX36uWBX58OdBsSS6
55
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
66
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
77
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
8-
github.com/google/go-github/v67 v67.0.0 h1:g11NDAmfaBaCO8qYdI9fsmbaRipHNWRIU/2YGvlh4rg=
9-
github.com/google/go-github/v67 v67.0.0/go.mod h1:zH3K7BxjFndr9QSeFibx4lTKkYS3K9nDanoI1NjaOtY=
8+
github.com/google/go-github/v68 v68.0.0 h1:ZW57zeNZiXTdQ16qrDiZ0k6XucrxZ2CGmoTvcCyQG6s=
9+
github.com/google/go-github/v68 v68.0.0/go.mod h1:K9HAUBovM2sLwM408A18h+wd9vqdLOEqTUCbnRIcx68=
1010
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
1111
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
1212
github.com/xlzd/gotp v0.1.0 h1:37blvlKCh38s+fkem+fFh7sMnceltoIEBYTVXyoa5Po=

0 commit comments

Comments
 (0)