Skip to content

fix(deps): update all non-major dependencies #3999

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #3999

GitHub Actions / golangci failed Jan 2, 2025 in 1s

reviewdog [golangci] report

reported by reviewdog 🐶

Findings (19)

version/version.go|42 col 12| undefined: semver (typecheck)
command/login/login.go|21 col 21| undefined: cli (typecheck)
command/login/login.go|82 col 18| undefined: cli (typecheck)
command/login/login.go|26 col 11| undefined: cli (typecheck)
action/pipeline/stage.go|45 col 4| missing type in composite literal (typecheck)
action/pipeline/stage.go|15 col 2| declared and not used: image (typecheck)
action/pipeline/stage.go|18 col 2| declared and not used: commands (typecheck)
action/pipeline/step.go|45 col 4| missing type in composite literal (typecheck)
action/pipeline/step.go|15 col 2| declared and not used: image (typecheck)
action/pipeline/step.go|18 col 2| declared and not used: commands (typecheck)
action/settings/update.go|217 col 8| f.Compiler undefined (type *ConfigFile has no field or method Compiler) (typecheck)
action/settings/update.go|218 col 9| f.Compiler undefined (type *ConfigFile has no field or method Compiler) (typecheck)
action/settings/update.go|219 col 43| f.Compiler undefined (type *ConfigFile has no field or method Compiler) (typecheck)
action/settings/update.go|231 col 8| f.Queue undefined (type *ConfigFile has no field or method Queue) (typecheck)
action/settings/update.go|232 col 9| f.Queue undefined (type *ConfigFile has no field or method Queue) (typecheck)
action/settings/update.go|233 col 24| f.Queue undefined (type *ConfigFile has no field or method Queue) (typecheck)
internal/git.go|51 col 12| undefined: git (typecheck)
internal/git.go|87 col 12| undefined: git (typecheck)
internal/git_test.go|87 col 13| undefined: git (typecheck)

Filtered Findings (0)

Annotations

Check failure on line 42 in version/version.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] version/version.go#L42

undefined: semver (typecheck)
Raw output
version/version.go:42:12: undefined: semver (typecheck)
	v, err := semver.NewVersion(Tag)
	          ^

Check failure on line 21 in command/login/login.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] command/login/login.go#L21

undefined: cli (typecheck)
Raw output
command/login/login.go:21:21: undefined: cli (typecheck)
var CommandLogin = &cli.Command{
                    ^

Check failure on line 82 in command/login/login.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] command/login/login.go#L82

undefined: cli (typecheck)
Raw output
command/login/login.go:82:18: undefined: cli (typecheck)
func runLogin(c *cli.Context) error {
                 ^

Check failure on line 26 in command/login/login.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] command/login/login.go#L26

undefined: cli (typecheck)
Raw output
command/login/login.go:26:11: undefined: cli (typecheck)
	Flags: []cli.Flag{
	         ^

Check failure on line 45 in action/pipeline/stage.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/pipeline/stage.go#L45

missing type in composite literal (typecheck)
Raw output
action/pipeline/stage.go:45:4: missing type in composite literal (typecheck)
			{
			^

Check failure on line 15 in action/pipeline/stage.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/pipeline/stage.go#L15

declared and not used: image (typecheck)
Raw output
action/pipeline/stage.go:15:2: declared and not used: image (typecheck)
	image := "alpine:latest"
	^

Check failure on line 18 in action/pipeline/stage.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/pipeline/stage.go#L18

declared and not used: commands (typecheck)
Raw output
action/pipeline/stage.go:18:2: declared and not used: commands (typecheck)
	commands := []string{"echo hello"}
	^

Check failure on line 45 in action/pipeline/step.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/pipeline/step.go#L45

missing type in composite literal (typecheck)
Raw output
action/pipeline/step.go:45:4: missing type in composite literal (typecheck)
			{
			^

Check failure on line 15 in action/pipeline/step.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/pipeline/step.go#L15

declared and not used: image (typecheck)
Raw output
action/pipeline/step.go:15:2: declared and not used: image (typecheck)
	image := "alpine:latest"
	^

Check failure on line 18 in action/pipeline/step.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/pipeline/step.go#L18

declared and not used: commands (typecheck)
Raw output
action/pipeline/step.go:18:2: declared and not used: commands (typecheck)
	commands := []string{"echo hello"}
	^

Check failure on line 217 in action/settings/update.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/settings/update.go#L217

f.Compiler undefined (type *ConfigFile has no field or method Compiler) (typecheck)
Raw output
action/settings/update.go:217:8: f.Compiler undefined (type *ConfigFile has no field or method Compiler) (typecheck)
		if f.Compiler != nil {
		     ^

Check failure on line 218 in action/settings/update.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/settings/update.go#L218

f.Compiler undefined (type *ConfigFile has no field or method Compiler) (typecheck)
Raw output
action/settings/update.go:218:9: f.Compiler undefined (type *ConfigFile has no field or method Compiler) (typecheck)
			if f.Compiler.CloneImage != nil {
			     ^

Check failure on line 219 in action/settings/update.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/settings/update.go#L219

f.Compiler undefined (type *ConfigFile has no field or method Compiler) (typecheck)
Raw output
action/settings/update.go:219:43: f.Compiler undefined (type *ConfigFile has no field or method Compiler) (typecheck)
				s.Compiler.CloneImage = vela.String(f.Compiler.GetCloneImage())
				                                      ^

Check failure on line 231 in action/settings/update.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/settings/update.go#L231

f.Queue undefined (type *ConfigFile has no field or method Queue) (typecheck)
Raw output
action/settings/update.go:231:8: f.Queue undefined (type *ConfigFile has no field or method Queue) (typecheck)
		if f.Queue != nil {
		     ^

Check failure on line 232 in action/settings/update.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/settings/update.go#L232

f.Queue undefined (type *ConfigFile has no field or method Queue) (typecheck)
Raw output
action/settings/update.go:232:9: f.Queue undefined (type *ConfigFile has no field or method Queue) (typecheck)
			if f.Queue.Routes != nil {
			     ^

Check failure on line 233 in action/settings/update.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] action/settings/update.go#L233

f.Queue undefined (type *ConfigFile has no field or method Queue) (typecheck)
Raw output
action/settings/update.go:233:24: f.Queue undefined (type *ConfigFile has no field or method Queue) (typecheck)
				s.Queue.Routes = f.Queue.Routes
				                   ^

Check failure on line 51 in internal/git.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] internal/git.go#L51

undefined: git (typecheck)
Raw output
internal/git.go:51:12: undefined: git (typecheck)
	r, err := git.PlainOpen(path)
	          ^

Check failure on line 87 in internal/git.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] internal/git.go#L87

undefined: git (typecheck)
Raw output
internal/git.go:87:12: undefined: git (typecheck)
	r, err := git.PlainOpen(path)
	          ^

Check failure on line 87 in internal/git_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] internal/git_test.go#L87

undefined: git (typecheck)
Raw output
internal/git_test.go:87:13: undefined: git (typecheck)
	r1, err := git.PlainInit("./testdata/project1/", false)
	           ^