fix(deps): update module github.com/google/go-github/v86 to v87 (#37845)

This commit is contained in:
Giteabot
2026-05-25 08:28:56 -07:00
committed by GitHub
parent d93bbcc0a6
commit 821d3c4672
8 changed files with 41 additions and 26 deletions
+3 -2
View File
@@ -30,8 +30,9 @@ func TestGitHubDownloadRepo(t *testing.T) {
GithubLimitRateRemaining = 3 // Wait at 3 remaining since we could have 3 CI in //
ctx := t.Context()
downloader := NewGithubDownloaderV3(ctx, mockServer.URL, "", "", token, "go-gitea", "test_repo")
err := downloader.RefreshRate(ctx)
downloader, err := NewGithubDownloaderV3(ctx, mockServer.URL, "", "", token, "go-gitea", "test_repo")
require.NoError(t, err)
err = downloader.RefreshRate(ctx)
require.NoError(t, err)
repo, err := downloader.GetRepoInfo(ctx)