Skip to content

Commit db3c0d8

Browse files
authored
Bump google/go-github to v38 (#9)
1 parent a96f47c commit db3c0d8

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
/patch2pr
2+
.idea/
3+

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/v37/github"
15+
"github.com/google/go-github/v38/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
@@ -14,7 +14,7 @@ import (
1414
"time"
1515

1616
"github.com/bluekeyes/go-gitdiff/gitdiff"
17-
"github.com/google/go-github/v37/github"
17+
"github.com/google/go-github/v38/github"
1818
"golang.org/x/oauth2"
1919
)
2020

cmd/patch2pr/main.go

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

1717
"github.com/bluekeyes/go-gitdiff/gitdiff"
1818
"github.com/bluekeyes/patch2pr"
19-
"github.com/google/go-github/v37/github"
19+
"github.com/google/go-github/v38/github"
2020
"golang.org/x/oauth2"
2121
)
2222

go.mod

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

55
require (
66
github.com/bluekeyes/go-gitdiff v0.5.2
7-
github.com/google/go-github/v37 v37.0.0
7+
github.com/google/go-github/v38 v38.1.0
88
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
99
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs
66
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
77
github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=
88
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
9-
github.com/google/go-github/v37 v37.0.0 h1:rCspN8/6kB1BAJWZfuafvHhyfIo5fkAulaP/3bOQ/tM=
10-
github.com/google/go-github/v37 v37.0.0/go.mod h1:LM7in3NmXDrX58GbEHy7FtNLbI2JijX93RnMKvWG3m4=
9+
github.com/google/go-github/v38 v38.1.0 h1:C6h1FkaITcBFK7gAmq4eFzt6gbhEhk7L5z6R3Uva+po=
10+
github.com/google/go-github/v38 v38.1.0/go.mod h1:cStvrz/7nFr0FoENgG6GLbp53WaelXucT+BBz/3VKx4=
1111
github.com/google/go-querystring v1.0.0 h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk=
1212
github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck=
1313
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 h1:VklqNMn3ovrHsnt90PveolxSbWFaJdECFbxSq0Mqo2M=

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/v37/github"
8+
"github.com/google/go-github/v38/github"
99
)
1010

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

0 commit comments

Comments
 (0)