diff --git a/internal/commands/release_notes.go b/internal/commands/release_notes.go index 8a1d703e9..a94342a80 100644 --- a/internal/commands/release_notes.go +++ b/internal/commands/release_notes.go @@ -16,7 +16,7 @@ import ( "time" "github.com/go-git/go-git/v5" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "github.com/pivotal-cf/jhanda" "github.com/pivotal-cf/kiln/internal/gh" diff --git a/internal/commands/release_notes_test.go b/internal/commands/release_notes_test.go index c431ac38e..04059357b 100644 --- a/internal/commands/release_notes_test.go +++ b/internal/commands/release_notes_test.go @@ -14,7 +14,7 @@ import ( "github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5/config" "github.com/go-git/go-git/v5/storage/memory" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "github.com/pivotal-cf/jhanda" "github.com/pivotal-cf/kiln/pkg/cargo" diff --git a/internal/component/fakes/release_by_tag_getter.go b/internal/component/fakes/release_by_tag_getter.go index 742dea393..8a0073791 100644 --- a/internal/component/fakes/release_by_tag_getter.go +++ b/internal/component/fakes/release_by_tag_getter.go @@ -5,7 +5,7 @@ import ( "context" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "github.com/pivotal-cf/kiln/internal/component" ) diff --git a/internal/component/fakes/release_by_tag_getter_asset_downloader.go b/internal/component/fakes/release_by_tag_getter_asset_downloader.go index 30fca6a80..38534107f 100644 --- a/internal/component/fakes/release_by_tag_getter_asset_downloader.go +++ b/internal/component/fakes/release_by_tag_getter_asset_downloader.go @@ -7,7 +7,7 @@ import ( "net/http" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "github.com/pivotal-cf/kiln/internal/component" ) diff --git a/internal/component/fakes/releases_lister.go b/internal/component/fakes/releases_lister.go index f9f40aa6c..7ca2df186 100644 --- a/internal/component/fakes/releases_lister.go +++ b/internal/component/fakes/releases_lister.go @@ -5,7 +5,7 @@ import ( "context" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "github.com/pivotal-cf/kiln/internal/component" ) diff --git a/internal/component/fakes_internal/release_by_tag_getter_asset_downloader.go b/internal/component/fakes_internal/release_by_tag_getter_asset_downloader.go index b23c72c42..28ed19f62 100644 --- a/internal/component/fakes_internal/release_by_tag_getter_asset_downloader.go +++ b/internal/component/fakes_internal/release_by_tag_getter_asset_downloader.go @@ -7,7 +7,7 @@ import ( "net/http" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" ) type ReleaseByTagGetterAssetDownloader struct { diff --git a/internal/component/fakes_internal/repository_release_lister.go b/internal/component/fakes_internal/repository_release_lister.go index 042e3b89c..d712a4e90 100644 --- a/internal/component/fakes_internal/repository_release_lister.go +++ b/internal/component/fakes_internal/repository_release_lister.go @@ -5,7 +5,7 @@ import ( "context" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" ) type RepositoryReleaseLister struct { diff --git a/internal/component/github_release_source.go b/internal/component/github_release_source.go index 999d5a20c..204d701a3 100644 --- a/internal/component/github_release_source.go +++ b/internal/component/github_release_source.go @@ -15,7 +15,7 @@ import ( "strings" "github.com/Masterminds/semver/v3" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "golang.org/x/oauth2" "github.com/pivotal-cf/kiln/internal/gh" diff --git a/internal/component/github_release_source_internal_test.go b/internal/component/github_release_source_internal_test.go index b96a5e985..b0cc374c8 100644 --- a/internal/component/github_release_source_internal_test.go +++ b/internal/component/github_release_source_internal_test.go @@ -9,7 +9,7 @@ import ( "os" "testing" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" . "github.com/onsi/gomega" diff --git a/internal/component/github_release_source_test.go b/internal/component/github_release_source_test.go index 87b28d980..d121429cb 100644 --- a/internal/component/github_release_source_test.go +++ b/internal/component/github_release_source_test.go @@ -11,7 +11,7 @@ import ( "os" "testing" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" . "github.com/onsi/gomega" "github.com/pivotal-cf/kiln/internal/component" diff --git a/internal/gh/client.go b/internal/gh/client.go index 5263c525b..e4db8aef6 100644 --- a/internal/gh/client.go +++ b/internal/gh/client.go @@ -3,7 +3,7 @@ package gh import ( "context" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "golang.org/x/oauth2" ) diff --git a/pkg/cargo/bump.go b/pkg/cargo/bump.go index ff0c5f57b..0daf74558 100644 --- a/pkg/cargo/bump.go +++ b/pkg/cargo/bump.go @@ -8,7 +8,7 @@ import ( "sync" "github.com/Masterminds/semver/v3" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "github.com/pivotal-cf/kiln/internal/gh" ) diff --git a/pkg/cargo/bump_internal_test.go b/pkg/cargo/bump_internal_test.go index dd4986311..991569f85 100644 --- a/pkg/cargo/bump_internal_test.go +++ b/pkg/cargo/bump_internal_test.go @@ -5,7 +5,7 @@ import ( . "github.com/onsi/gomega" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" ) func TestInternal_deduplicateReleasesWithTheSameTagName(t *testing.T) { diff --git a/pkg/cargo/bump_test.go b/pkg/cargo/bump_test.go index 826c754f4..6b24d627f 100644 --- a/pkg/cargo/bump_test.go +++ b/pkg/cargo/bump_test.go @@ -6,7 +6,7 @@ import ( "net/http" "testing" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" . "github.com/onsi/gomega" diff --git a/pkg/notes/internal/fakes/issue_getter.go b/pkg/notes/internal/fakes/issue_getter.go index 3dbaa90cc..ea84d5afe 100644 --- a/pkg/notes/internal/fakes/issue_getter.go +++ b/pkg/notes/internal/fakes/issue_getter.go @@ -5,7 +5,7 @@ import ( "context" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" ) type IssueGetter struct { diff --git a/pkg/notes/internal/fakes/issues_by_repo_lister.go b/pkg/notes/internal/fakes/issues_by_repo_lister.go index f63c2368d..b05a0543c 100644 --- a/pkg/notes/internal/fakes/issues_by_repo_lister.go +++ b/pkg/notes/internal/fakes/issues_by_repo_lister.go @@ -5,7 +5,7 @@ import ( "context" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" ) type IssuesByRepoLister struct { diff --git a/pkg/notes/internal/fakes/issues_service.go b/pkg/notes/internal/fakes/issues_service.go index fb4af88f0..d0dfb05c7 100644 --- a/pkg/notes/internal/fakes/issues_service.go +++ b/pkg/notes/internal/fakes/issues_service.go @@ -5,7 +5,7 @@ import ( "context" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" ) type IssuesService struct { diff --git a/pkg/notes/internal/fakes/milestone_lister.go b/pkg/notes/internal/fakes/milestone_lister.go index 02d2c029d..c2e007fc1 100644 --- a/pkg/notes/internal/fakes/milestone_lister.go +++ b/pkg/notes/internal/fakes/milestone_lister.go @@ -5,7 +5,7 @@ import ( "context" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" ) type MilestoneLister struct { diff --git a/pkg/notes/internal/fakes/releases_service.go b/pkg/notes/internal/fakes/releases_service.go index 0d89fd752..895e31ac5 100644 --- a/pkg/notes/internal/fakes/releases_service.go +++ b/pkg/notes/internal/fakes/releases_service.go @@ -5,7 +5,7 @@ import ( "context" "sync" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "github.com/pivotal-cf/kiln/pkg/cargo" ) diff --git a/pkg/notes/notes_data.go b/pkg/notes/notes_data.go index e06175f00..23830ed07 100644 --- a/pkg/notes/notes_data.go +++ b/pkg/notes/notes_data.go @@ -21,7 +21,7 @@ import ( "github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5/plumbing" "github.com/go-git/go-git/v5/plumbing/storer" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "gopkg.in/yaml.v2" "github.com/pivotal-cf/kiln/pkg/cargo" diff --git a/pkg/notes/notes_data_test.go b/pkg/notes/notes_data_test.go index 93ec5bcb0..a5372bfa1 100644 --- a/pkg/notes/notes_data_test.go +++ b/pkg/notes/notes_data_test.go @@ -16,7 +16,7 @@ import ( "github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5/plumbing" "github.com/go-git/go-git/v5/storage/memory" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "github.com/pivotal-cf/kiln/pkg/cargo" "github.com/pivotal-cf/kiln/pkg/notes/internal/fakes" diff --git a/pkg/notes/notes_page_test.go b/pkg/notes/notes_page_test.go index 5ff4d80a6..5488881d7 100644 --- a/pkg/notes/notes_page_test.go +++ b/pkg/notes/notes_page_test.go @@ -17,7 +17,7 @@ import ( "github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5/plumbing/object" "github.com/go-git/go-git/v5/storage/memory" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" "github.com/pivotal-cf/kiln/pkg/cargo" ) diff --git a/pkg/notes/notes_template_test.go b/pkg/notes/notes_template_test.go index 78bdb3c3b..9fedfa015 100644 --- a/pkg/notes/notes_template_test.go +++ b/pkg/notes/notes_template_test.go @@ -6,7 +6,7 @@ import ( "text/template" "github.com/Masterminds/semver/v3" - "github.com/google/go-github/v40/github" + "github.com/google/go-github/v50/github" . "github.com/onsi/gomega" "github.com/pivotal-cf/kiln/pkg/cargo"