Skip to content

Commit 46ce695

Browse files
authored
Merge pull request #29 from krancour/krancour/go-github-update
chore: upgrade github.com/google/go-github to v74
2 parents 43e37c4 + 61271ff commit 46ce695

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ import (
7272
"os"
7373
"strconv"
7474

75-
"github.com/google/go-github/v73/github"
75+
"github.com/google/go-github/v74/github"
7676
"github.com/jferrl/go-githubauth"
7777
"golang.org/x/oauth2"
7878
)
@@ -116,7 +116,7 @@ import (
116116
"os"
117117
"strconv"
118118

119-
"github.com/google/go-github/v73/github"
119+
"github.com/google/go-github/v74/github"
120120
"github.com/jferrl/go-githubauth"
121121
"golang.org/x/oauth2"
122122
)
@@ -283,7 +283,7 @@ import (
283283
"fmt"
284284
"os"
285285

286-
"github.com/google/go-github/v73/github"
286+
"github.com/google/go-github/v74/github"
287287
"github.com/jferrl/go-githubauth"
288288
"golang.org/x/oauth2"
289289
)

auth.go

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

1717
jwt "github.com/golang-jwt/jwt/v5"
18-
"github.com/google/go-github/v73/github"
18+
"github.com/google/go-github/v74/github"
1919
"golang.org/x/oauth2"
2020
)
2121

auth_test.go

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

1414
jwt "github.com/golang-jwt/jwt/v5"
15-
"github.com/google/go-github/v73/github"
15+
"github.com/google/go-github/v74/github"
1616
"github.com/migueleliasweb/go-github-mock/src/mock"
1717
"golang.org/x/oauth2"
1818
)

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ go 1.25
44

55
require (
66
github.com/golang-jwt/jwt/v5 v5.3.0
7-
github.com/google/go-github/v73 v73.0.0
7+
github.com/google/go-github/v74 v74.0.0
88
golang.org/x/oauth2 v0.31.0
99
)
1010

1111
require (
12+
github.com/google/go-github/v73 v73.0.0 // indirect
1213
github.com/gorilla/mux v1.8.1 // indirect
1314
golang.org/x/time v0.12.0 // indirect
1415
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
55
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
66
github.com/google/go-github/v73 v73.0.0 h1:aR+Utnh+Y4mMkS+2qLQwcQ/cF9mOTpdwnzlaw//rG24=
77
github.com/google/go-github/v73 v73.0.0/go.mod h1:fa6w8+/V+edSU0muqdhCVY7Beh1M8F1IlQPZIANKIYw=
8+
github.com/google/go-github/v74 v74.0.0 h1:yZcddTUn8DPbj11GxnMrNiAnXH14gNs559AsUpNpPgM=
9+
github.com/google/go-github/v74 v74.0.0/go.mod h1:ubn/YdyftV80VPSI26nSJvaEsTOnsjrxG3o9kJhcyak=
810
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
911
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
1012
github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY=

0 commit comments

Comments
 (0)