diff options
author | Yevhen Pavlov <yevhen.pavlov.ua@gmail.com> | 2023-06-09 22:42:51 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-09 19:42:51 +0000 |
commit | 5fa4415bbb1d0635152554692ecaa64096d80875 (patch) | |
tree | 16f74645004c8a06091f4a7a09d23c26091edd1b /services/migrations | |
parent | feb38da259c9e3b05fe227838b9886e7dc8486ed (diff) | |
download | gitea-5fa4415bbb1d0635152554692ecaa64096d80875.tar.gz gitea-5fa4415bbb1d0635152554692ecaa64096d80875.zip |
Update github.com/google/go-github to v53 (#25157)
The new `go-github` version
[53](https://github.com/google/go-github/releases/tag/v53.0.0) has been
released.
Diffstat (limited to 'services/migrations')
-rw-r--r-- | services/migrations/error.go | 2 | ||||
-rw-r--r-- | services/migrations/github.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/services/migrations/error.go b/services/migrations/error.go index a89105a007..c8e6c8fe13 100644 --- a/services/migrations/error.go +++ b/services/migrations/error.go @@ -7,7 +7,7 @@ package migrations import ( "errors" - "github.com/google/go-github/v52/github" + "github.com/google/go-github/v53/github" ) // ErrRepoNotCreated returns the error that repository not created diff --git a/services/migrations/github.go b/services/migrations/github.go index cc8bb53407..ed193cd746 100644 --- a/services/migrations/github.go +++ b/services/migrations/github.go @@ -20,7 +20,7 @@ import ( "code.gitea.io/gitea/modules/proxy" "code.gitea.io/gitea/modules/structs" - "github.com/google/go-github/v52/github" + "github.com/google/go-github/v53/github" "golang.org/x/oauth2" ) |