Skip to content

Commit

Permalink
bump go-github to v50
Browse files Browse the repository at this point in the history
  • Loading branch information
crhntr committed Aug 16, 2024
1 parent 173c1aa commit b840a4f
Show file tree
Hide file tree
Showing 23 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion internal/commands/release_notes.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/release_notes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion internal/component/fakes/release_by_tag_getter.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/component/fakes/releases_lister.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/component/github_release_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion internal/component/github_release_source_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion internal/component/github_release_source_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion internal/gh/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/cargo/bump.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cargo/bump_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/cargo/bump_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion pkg/notes/internal/fakes/issue_getter.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/notes/internal/fakes/issues_by_repo_lister.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/notes/internal/fakes/issues_service.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/notes/internal/fakes/milestone_lister.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/notes/internal/fakes/releases_service.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/notes/notes_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/notes/notes_data_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/notes/notes_page_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/notes/notes_template_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b840a4f

Please sign in to comment.