Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.26.2
require (
github.com/charmbracelet/huh v1.0.0
github.com/charmbracelet/lipgloss v1.1.0
github.com/google/go-github/v86 v86.0.0
github.com/google/go-github/v88 v88.0.0
github.com/orsinium-labs/enum v1.5.0
github.com/samber/lo v1.53.0
github.com/urfave/cli/v3 v3.9.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f/go.mod h1:vw97
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/google/go-github/v86 v86.0.0 h1:S/6aANJhwRm8EQmGKVML3j41yq0h2BsTP8FnDkO7kcA=
github.com/google/go-github/v86 v86.0.0/go.mod h1:zKv1l4SwDXNFMGByi2FWkq71KwSXqj/eQRZuqtmcot8=
github.com/google/go-github/v88 v88.0.0 h1:dZA9IKkPK1eXZj4ypngnpRj5FwdpTv4whix2PrQMP7M=
github.com/google/go-github/v88 v88.0.0/go.mod h1:rufTDgn2N45wjhukLTyxmvc9nilSp3mr3Rgtt6b1MPw=
github.com/google/go-querystring v1.2.0 h1:yhqkPbu2/OH+V9BfpCVPZkNmUXhb2gBxJArfhIxNtP0=
github.com/google/go-querystring v1.2.0/go.mod h1:8IFJqpSRITyJ8QhQ13bmbeMBDfmeEJZD5A0egEOmkqU=
github.com/lucasb-eyer/go-colorful v1.4.0 h1:UtrWVfLdarDgc44HcS7pYloGHJUjHV/4FwW4TvVgFr4=
Expand Down
2 changes: 1 addition & 1 deletion pkg/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"strings"

"github.com/3lvia/cli/pkg/style"
"github.com/google/go-github/v86/github"
"github.com/google/go-github/v88/github"
)

func RemoveZeroValues(slice []string) []string {
Expand Down Expand Up @@ -164,8 +164,8 @@

func GetAuthenticatedGithubClient() *github.Client {
if os.Getenv("CI") == "1" {
return github.NewClient(nil).WithAuthToken(os.Getenv("GITHUB_TOKEN"))

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Build (macos, amd64)

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Build (macos, arm64)

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Build (linux, amd64)

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (github-actions)

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (build)

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (scan)

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (init)

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (upgrade)

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Test

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context

Check failure on line 167 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Lint

multiple-value github.NewClient(nil) (value of type (*github.Client, error)) in single-value context
}

return github.NewClient(nil)

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Build (macos, amd64)

too many return values

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Build (macos, arm64)

too many return values

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Build (linux, amd64)

too many return values

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (github-actions)

too many return values

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (build)

too many return values

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (scan)

too many return values

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (init)

too many return values

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / End-to-End Tests (upgrade)

too many return values

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Test

too many return values

Check failure on line 170 in pkg/utils/utils.go

View workflow job for this annotation

GitHub Actions / Lint

too many return values
}
Loading