Skip to content

Commit 812a9da

Browse files
authored
Upgrade go-github to v39 (#17437)
1 parent 849356d commit 812a9da

File tree

126 files changed

+2564
-170
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+2564
-170
lines changed

go.mod

+1-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ require (
5353
github.com/gogs/go-gogs-client v0.0.0-20210131175652-1d7215cd8d85
5454
github.com/golang-jwt/jwt v3.2.2+incompatible
5555
github.com/golang/snappy v0.0.4 // indirect
56-
github.com/google/go-github/v37 v37.0.0
57-
github.com/google/go-querystring v1.1.0 // indirect
56+
github.com/google/go-github/v39 v39.2.0
5857
github.com/google/uuid v1.2.0
5958
github.com/gorilla/context v1.1.1
6059
github.com/gorilla/feeds v1.1.1

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -562,8 +562,8 @@ github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
562562
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
563563
github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=
564564
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
565-
github.com/google/go-github/v37 v37.0.0 h1:rCspN8/6kB1BAJWZfuafvHhyfIo5fkAulaP/3bOQ/tM=
566-
github.com/google/go-github/v37 v37.0.0/go.mod h1:LM7in3NmXDrX58GbEHy7FtNLbI2JijX93RnMKvWG3m4=
565+
github.com/google/go-github/v39 v39.2.0 h1:rNNM311XtPOz5rDdsJXAp2o8F67X9FnROXTvto3aSnQ=
566+
github.com/google/go-github/v39 v39.2.0/go.mod h1:C1s8C5aCC9L+JXIYpJM5GYytdX52vC1bLvHEF1IhBrE=
567567
github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck=
568568
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
569569
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=

modules/migrations/error.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package migrations
88
import (
99
"errors"
1010

11-
"github.com/google/go-github/v37/github"
11+
"github.com/google/go-github/v39/github"
1212
)
1313

1414
var (

modules/migrations/github.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"code.gitea.io/gitea/modules/structs"
2424
"code.gitea.io/gitea/modules/util"
2525

26-
"github.com/google/go-github/v37/github"
26+
"github.com/google/go-github/v39/github"
2727
"golang.org/x/oauth2"
2828
)
2929

vendor/github.com/google/go-github/v37/AUTHORS vendor/github.com/google/go-github/v39/AUTHORS

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/go-github/v37/github/actions_runner_groups.go vendor/github.com/google/go-github/v39/github/actions_runner_groups.go

+11-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/go-github/v37/github/actions_runners.go vendor/github.com/google/go-github/v39/github/actions_runners.go

+59
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/go-github/v37/github/actions_secrets.go vendor/github.com/google/go-github/v39/github/actions_secrets.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/go-github/v37/github/actions_workflow_jobs.go vendor/github.com/google/go-github/v39/github/actions_workflow_jobs.go

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/go-github/v37/github/actions_workflow_runs.go vendor/github.com/google/go-github/v39/github/actions_workflow_runs.go

+32-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/go-github/v37/github/activity_notifications.go vendor/github.com/google/go-github/v39/github/activity_notifications.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)