Skip to content

Commit a6cc2fb

Browse files
authored
Update google/go-github to v62 (#103)
1 parent 4362be8 commit a6cc2fb

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

applier.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"time"
1313

1414
"github.com/bluekeyes/go-gitdiff/gitdiff"
15-
"github.com/google/go-github/v61/github"
15+
"github.com/google/go-github/v62/github"
1616
)
1717

1818
// DefaultCommitMessage is the commit message used when no message is provided

applier_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
"github.com/bluekeyes/go-gitdiff/gitdiff"
1717
"github.com/bluekeyes/patch2pr/internal"
18-
"github.com/google/go-github/v61/github"
18+
"github.com/google/go-github/v62/github"
1919
"github.com/shurcooL/githubv4"
2020
)
2121

cmd/patch2pr/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/bluekeyes/go-gitdiff/gitdiff"
1919
"github.com/bluekeyes/patch2pr"
2020
"github.com/bluekeyes/patch2pr/internal"
21-
"github.com/google/go-github/v61/github"
21+
"github.com/google/go-github/v62/github"
2222
)
2323

2424
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.21
44

55
require (
66
github.com/bluekeyes/go-gitdiff v0.7.3
7-
github.com/google/go-github/v61 v61.0.0
7+
github.com/google/go-github/v62 v62.0.0
88
github.com/shurcooL/githubv4 v0.0.0-20210922025249-6831e00d857f
99
)
1010

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ github.com/bluekeyes/go-gitdiff v0.7.3/go.mod h1:QpfYYO1E0fTVHVZAZKiRjtSGY9823iC
33
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
44
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
55
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
6-
github.com/google/go-github/v61 v61.0.0 h1:VwQCBwhyE9JclCI+22/7mLB1PuU9eowCXKY5pNlu1go=
7-
github.com/google/go-github/v61 v61.0.0/go.mod h1:0WR+KmsWX75G2EbpyGsGmradjo3IiciuI4BmdVCobQY=
6+
github.com/google/go-github/v62 v62.0.0 h1:/6mGCaRywZz9MuHyw9gD1CwsbmBX8GWsbFkwMmHdhl4=
7+
github.com/google/go-github/v62 v62.0.0/go.mod h1:EMxeUqGJq2xRu9DYBMwel/mr7kZrzUOfQmmpYrZn2a4=
88
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
99
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
1010
github.com/shurcooL/githubv4 v0.0.0-20210922025249-6831e00d857f h1:q4b8/GCL8Ksl+okhFKSd8DVBQNc0XExjxTO68nK0c3Y=

graphql_applier.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"path"
1212

1313
"github.com/bluekeyes/go-gitdiff/gitdiff"
14-
"github.com/google/go-github/v61/github"
14+
"github.com/google/go-github/v62/github"
1515
"github.com/shurcooL/githubv4"
1616
)
1717

reference.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strings"
77

8-
"github.com/google/go-github/v61/github"
8+
"github.com/google/go-github/v62/github"
99
)
1010

1111
// Reference is a named reference in a repository.

0 commit comments

Comments
 (0)