Skip to content

Commit 01bacb0

Browse files
committed
chore: Fix lint after rebase
Signed-off-by: Oliver Gondža <ogondza@gmail.com>
1 parent 979c528 commit 01bacb0

5 files changed

Lines changed: 7 additions & 8 deletions

File tree

controller/state.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import (
2222
resourceutil "github.com/argoproj/argo-cd/gitops-engine/pkg/sync/resource"
2323
"github.com/argoproj/argo-cd/gitops-engine/pkg/sync/syncwaves"
2424
kubeutil "github.com/argoproj/argo-cd/gitops-engine/pkg/utils/kube"
25+
2526
"github.com/argoproj/argo-cd/v3/util/sourceintegrity"
2627

2728
log "github.com/sirupsen/logrus"

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFI
115115
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4=
116116
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
117117
github.com/appscode/go v0.0.0-20191119085241-0887d8ec2ecc/go.mod h1:OawnOmAL4ZX3YaPdN+8HTNwBveT1jMsqP74moa9XUbE=
118-
github.com/argoproj/gitops-engine v0.7.3 h1:0ZlRTReAJG5Y1PviQ8ZIJq/+VowxWe2uFwoXqYcbtXU=
119-
github.com/argoproj/gitops-engine v0.7.3/go.mod h1:pRgVpLW7pZqf7n3COJ7UcDepk4cI61LAcJd64Q3Jq/c=
120118
github.com/argoproj/notifications-engine v0.5.1-0.20260213231747-1dbe3de712f8 h1:OGoe2RFv1wuhxHrFcdAC/VW+5HUkRI+1/zf3RGR5LnY=
121119
github.com/argoproj/notifications-engine v0.5.1-0.20260213231747-1dbe3de712f8/go.mod h1:zz+4OVgqmyD0T5whLAPO6k5BGLSop4j32BKHSAe80tM=
122120
github.com/argoproj/pkg v0.13.6 h1:36WPD9MNYECHcO1/R1pj6teYspiK7uMQLCgLGft2abM=

test/e2e/app_management_source_integrity_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package e2e
33
import (
44
"testing"
55

6-
"github.com/argoproj/gitops-engine/pkg/health"
7-
. "github.com/argoproj/gitops-engine/pkg/sync/common"
6+
"github.com/argoproj/argo-cd/gitops-engine/pkg/health"
7+
. "github.com/argoproj/argo-cd/gitops-engine/pkg/sync/common"
88
"github.com/stretchr/testify/assert"
99

1010
. "github.com/argoproj/argo-cd/v3/pkg/apis/application/v1alpha1"

test/e2e/app_multiple_sources_source_integrity_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package e2e
33
import (
44
"testing"
55

6-
"github.com/argoproj/gitops-engine/pkg/health"
7-
"github.com/argoproj/gitops-engine/pkg/sync/common"
6+
"github.com/argoproj/argo-cd/gitops-engine/pkg/health"
7+
"github.com/argoproj/argo-cd/gitops-engine/pkg/sync/common"
88

99
. "github.com/argoproj/argo-cd/v3/pkg/apis/application/v1alpha1"
1010
. "github.com/argoproj/argo-cd/v3/test/e2e/fixture"

util/git/gpg_verification_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Expire-Date: 0
7171
require.NoError(g.t, err)
7272

7373
// Parse output to get key ID
74-
lines := strings.Split(string(out), "\n")
75-
for _, line := range lines {
74+
lines := strings.SplitSeq(string(out), "\n")
75+
for line := range lines {
7676
if strings.HasPrefix(line, "pub:") {
7777
fields := strings.Split(line, ":")
7878
if len(fields) > 4 {

0 commit comments

Comments
 (0)