Skip to content
Open
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 @@ -10,7 +10,7 @@ require (
github.com/gofri/go-github-pagination v1.0.1
github.com/gofri/go-github-ratelimit/v2 v2.0.2
github.com/google/go-cmp v0.7.0
github.com/google/go-github/v90 v90.0.0
github.com/google/go-github/v91 v91.0.0
github.com/google/uuid v1.6.0
github.com/joho/godotenv v1.5.1
go.elastic.co/ecszap v1.0.3
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ 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/v88 v88.0.0 h1:dZA9IKkPK1eXZj4ypngnpRj5FwdpTv4whix2PrQMP7M=
github.com/google/go-github/v88 v88.0.0/go.mod h1:rufTDgn2N45wjhukLTyxmvc9nilSp3mr3Rgtt6b1MPw=
github.com/google/go-github/v90 v90.0.0 h1:EnX9HvTfqvuJbUSWu1/jLrYH6JJLMz0w0qfQVbTxPzE=
github.com/google/go-github/v90 v90.0.0/go.mod h1:pLzt1FZURZyoTHT5/Z1UQY3b9fYyrbXH6aj7X+qgID4=
github.com/google/go-github/v91 v91.0.0 h1:fpulREh37uBvOj4kF0vLuzjwJ1HHmFcAfquNjJfmpYs=
github.com/google/go-github/v91 v91.0.0/go.mod h1:rHtn7haKvmkTLhUK/aCQypiIj/suWSB3rnS+a1FdH6M=
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/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/organization_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/Interhyp/git-hubby/internal/reconciler/reconcilerfactory"
"github.com/Interhyp/git-hubby/test/mock"
"github.com/Interhyp/git-hubby/test/mock/ghclientmock"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"k8s.io/apimachinery/pkg/types"
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/repository_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/Interhyp/git-hubby/internal/reconciler/reconcilerfactory"
"github.com/Interhyp/git-hubby/internal/reconciler/reporec"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/util/workqueue"
"sigs.k8s.io/controller-runtime/pkg/controller"
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/repository_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/Interhyp/git-hubby/internal/reconciler/reconcilerfactory"
"github.com/Interhyp/git-hubby/test/mock"
"github.com/Interhyp/git-hubby/test/mock/ghclientmock"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"k8s.io/apimachinery/pkg/types"
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/team_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/Interhyp/git-hubby/internal/reconciler/reconcilerfactory"
"github.com/Interhyp/git-hubby/test/mock"
"github.com/Interhyp/git-hubby/test/mock/ghclientmock"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"k8s.io/apimachinery/pkg/types"
Expand Down
2 changes: 1 addition & 1 deletion internal/ghclient/caching_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"
"time"

"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

// contextKey is an unexported type used for context keys in this package.
Expand Down
2 changes: 1 addition & 1 deletion internal/ghclient/caching_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync/atomic"
"time"

"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/ghclient/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/gofri/go-github-pagination/githubpagination"
"github.com/gofri/go-github-ratelimit/v2/github_ratelimit"
"github.com/gofri/go-github-ratelimit/v2/github_ratelimit/github_primary_ratelimit"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp"
v1 "k8s.io/api/core/v1"
logf "sigs.k8s.io/controller-runtime/pkg/log"
Expand Down
2 changes: 1 addition & 1 deletion internal/ghclient/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import (
"context"

"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

// GitHubClient defines the interface for GitHub operations used by reconcilers.
Expand Down Expand Up @@ -92,8 +92,8 @@
// Teams operations
GetAllTeamsForOrg(ctx context.Context, org string) ([]*github.Team, error)
GetTeamBySlug(ctx context.Context, org string, slug string) (*github.Team, error)
EditTeamBySlug(ctx context.Context, org string, slug string, team *github.NewTeam) (*github.Team, error)

Check failure on line 95 in internal/ghclient/interface.go

View workflow job for this annotation

GitHub Actions / Test

undefined: github.NewTeam

Check failure on line 95 in internal/ghclient/interface.go

View workflow job for this annotation

GitHub Actions / Lint

undefined: github.NewTeam
CreateTeam(ctx context.Context, org string, team *github.NewTeam) (*github.Team, error)

Check failure on line 96 in internal/ghclient/interface.go

View workflow job for this annotation

GitHub Actions / Test

undefined: github.NewTeam

Check failure on line 96 in internal/ghclient/interface.go

View workflow job for this annotation

GitHub Actions / Lint

undefined: github.NewTeam
DeleteTeamBySlug(ctx context.Context, org string, slug string) error

// Team members operations
Expand Down
2 changes: 1 addition & 1 deletion internal/ghclient/wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

"github.com/bradleyfalzon/ghinstallation/v2"
"github.com/gofri/go-github-pagination/githubpagination"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

// GitHubClientWrapper is the production implementation of GitHubClient using the real GitHub API.
Expand Down Expand Up @@ -148,7 +148,7 @@
}

func (g *GitHubClientWrapper) CreateDeployKey(ctx context.Context, owner, repo string, key *github.Key) error {
_, response, err := g.client.Repositories.CreateKey(ctx, owner, repo, key)

Check failure on line 151 in internal/ghclient/wrapper.go

View workflow job for this annotation

GitHub Actions / Test

cannot use key (variable of type *"github.com/google/go-github/v91/github".Key) as "github.com/google/go-github/v91/github".CreateDeployKeyRequest value in argument to g.client.Repositories.CreateKey

Check failure on line 151 in internal/ghclient/wrapper.go

View workflow job for this annotation

GitHub Actions / Lint

cannot use key (variable of type *"github.com/google/go-github/v91/github".Key) as "github.com/google/go-github/v91/github".CreateDeployKeyRequest value in argument to g.client.Repositories.CreateKey
defer _closeBody(response)
return _handleErrorResponse(response, err)
}
Expand Down Expand Up @@ -369,13 +369,13 @@
return result, _handleErrorResponse(response, err)
}

func (g *GitHubClientWrapper) EditTeamBySlug(ctx context.Context, org string, slug string, team *github.NewTeam) (*github.Team, error) {

Check failure on line 372 in internal/ghclient/wrapper.go

View workflow job for this annotation

GitHub Actions / Test

undefined: github.NewTeam

Check failure on line 372 in internal/ghclient/wrapper.go

View workflow job for this annotation

GitHub Actions / Lint

undefined: github.NewTeam
result, response, err := g.client.Teams.EditTeamBySlug(ctx, org, slug, *team, false)

Check failure on line 373 in internal/ghclient/wrapper.go

View workflow job for this annotation

GitHub Actions / Test

g.client.Teams.EditTeamBySlug undefined (type *"github.com/google/go-github/v91/github".TeamsService has no field or method EditTeamBySlug)

Check failure on line 373 in internal/ghclient/wrapper.go

View workflow job for this annotation

GitHub Actions / Lint

g.client.Teams.EditTeamBySlug undefined (type *"github.com/google/go-github/v91/github".TeamsService has no field or method EditTeamBySlug)
defer _closeBody(response)
return result, _handleErrorResponse(response, err)
}

func (g *GitHubClientWrapper) CreateTeam(ctx context.Context, org string, team *github.NewTeam) (*github.Team, error) {

Check failure on line 378 in internal/ghclient/wrapper.go

View workflow job for this annotation

GitHub Actions / Test

undefined: github.NewTeam

Check failure on line 378 in internal/ghclient/wrapper.go

View workflow job for this annotation

GitHub Actions / Lint

undefined: github.NewTeam (typecheck)
result, response, err := g.client.Teams.CreateTeam(ctx, org, *team)
defer _closeBody(response)
return result, _handleErrorResponse(response, err)
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_actions_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

func EqualActionsPermissions(configuration *github.ActionsPermissions, current *github.ActionsPermissions) bool {
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_actions_settings_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package mapper

import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_autolink_mapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"

"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

func HashAutolink(keyPrefix, urlTemplate string, isAlphanumeric bool) string {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package mapper

import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

func ToGithubCodeSecurityConfiguration(csc *v1alpha1.CodeSecurityConfiguration) github.CodeSecurityConfiguration {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package mapper

import (
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_custom_property_mapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

const CustomPropertySourceTypeOrganization = "organization"
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_custom_property_mapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package mapper

import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_deploykey_mapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/utils"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

func HashDeployKey(key, title string, readonly bool) string {
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_deploykey_mapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package mapper

import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_hook_mapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/utils"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_hook_mapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package mapper

import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_org_mapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package mapper
import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-cmp/cmp"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

func OrgToGithubOrg(organization *v1alpha1.Organization) *github.Organization {
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_org_mapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package mapper

import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_repo_mapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package mapper
import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/utils"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

func RepoToGithubRepo(repo *v1alpha1.Repository) *github.Repository {
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_repo_mapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package mapper
import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/utils"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_ruleset_mapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
githubv1alpha1 "github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/utils"
"github.com/google/go-cmp/cmp"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

// RulesetPresetToGithubRuleset converts a RulesetPreset to a GitHub RepositoryRuleset.
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_ruleset_mapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package mapper

import (
githubv1alpha1 "github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_team_mapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"unicode"

"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
"golang.org/x/text/unicode/norm"
)

Expand Down Expand Up @@ -36,8 +36,8 @@
return team.Spec.NotificationSetting
}

func TeamToNewGitHubTeam(team *v1alpha1.Team) *github.NewTeam {

Check failure on line 39 in internal/mapper/github_team_mapper.go

View workflow job for this annotation

GitHub Actions / Test

undefined: github.NewTeam
return &github.NewTeam{

Check failure on line 40 in internal/mapper/github_team_mapper.go

View workflow job for this annotation

GitHub Actions / Test

undefined: github.NewTeam
Name: team.Spec.Name,
Description: new(team.Spec.Description),
Privacy: new(teamPrivacy(team)),
Expand Down
2 changes: 1 addition & 1 deletion internal/mapper/github_team_mapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package mapper

import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/ratelimit/org_registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"time"

"github.com/Interhyp/git-hubby/internal/config"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
logf "sigs.k8s.io/controller-runtime/pkg/log"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/ratelimit/org_registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/Interhyp/git-hubby/internal/config"
"github.com/Interhyp/git-hubby/internal/ratelimit"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/github_id_resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/ghclient"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
)

// GitHubIDResolver resolves GitHub slug/name references to numeric IDs during reconciliation.
Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/github_id_resolver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/test/mock/ghclientmock"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/orgrec/rec_actions_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/Interhyp/git-hubby/internal/mapper"
"github.com/Interhyp/git-hubby/internal/reconciler"
"github.com/Interhyp/git-hubby/internal/utils"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
logPkg "sigs.k8s.io/controller-runtime/pkg/log"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/orgrec/rec_actions_settings_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/reconciler"
"github.com/Interhyp/git-hubby/test/mock/ghclientmock"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
githubv1alpha1 "github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/ghclient"
"github.com/Interhyp/git-hubby/internal/mapper"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
"sigs.k8s.io/controller-runtime/pkg/client"
logPkg "sigs.k8s.io/controller-runtime/pkg/log"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/reconciler"
"github.com/Interhyp/git-hubby/test/mock/ghclientmock"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/orgrec/rec_custom_properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"

"github.com/Interhyp/git-hubby/internal/mapper"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
logPkg "sigs.k8s.io/controller-runtime/pkg/log"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/orgrec/rec_custom_properties_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/Interhyp/git-hubby/internal/mapper"
"github.com/Interhyp/git-hubby/internal/reconciler"
"github.com/Interhyp/git-hubby/test/mock/ghclientmock"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/orgrec/rec_org_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/reconciler"
"github.com/Interhyp/git-hubby/test/mock/ghclientmock"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/orgrec/rec_rulesets.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/mapper"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
"sigs.k8s.io/controller-runtime/pkg/client"
logPkg "sigs.k8s.io/controller-runtime/pkg/log"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/orgrec/rec_rulesets_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/reconciler"
"github.com/Interhyp/git-hubby/test/mock/ghclientmock"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
corev1 "k8s.io/api/core/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/reconciler/reporec/rec_actions_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
githubv1alpha1 "github.com/Interhyp/git-hubby/api/v1alpha1"
"github.com/Interhyp/git-hubby/internal/reconciler"
"github.com/Interhyp/git-hubby/internal/utils"
"github.com/google/go-github/v90/github"
"github.com/google/go-github/v91/github"
"sigs.k8s.io/controller-runtime/pkg/client"
logPkg "sigs.k8s.io/controller-runtime/pkg/log"
)
Expand Down
Loading
Loading