Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update codecov/codecov-action action to v5 #76

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

chore(deps): update codecov/codecov-action action to v5

ed182fa
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

chore(deps): update codecov/codecov-action action to v5 #76

chore(deps): update codecov/codecov-action action to v5
ed182fa
Select commit
Loading
Failed to load commit list.
GitHub Actions / golangci failed Dec 18, 2024 in 0s

reviewdog [golangci] report

reported by reviewdog 🐶

Findings (10)

cmd/vela-slack/plugin_test.go|67 col 72| unused-parameter: parameter 'r' seems to be unused, consider removing or renaming it as _ (revive)
cmd/vela-slack/plugin_test.go|90 col 72| unused-parameter: parameter 'r' seems to be unused, consider removing or renaming it as _ (revive)
cmd/vela-slack/plugin_test.go|113 col 72| unused-parameter: parameter 'r' seems to be unused, consider removing or renaming it as _ (revive)
cmd/vela-slack/main.go|486 col 12| SA1019: ldap.DialTLS is deprecated: Use DialURL instead. (staticcheck)
cmd/vela-slack/plugin_test.go|251 col 3| assignments should only be cuddled with other assignments (wsl)
cmd/vela-slack/plugin_test.go|115 col 3| assignments should only be cuddled with other assignments (wsl)
cmd/vela-slack/plugin_test.go|119 col 3| assignments should only be cuddled with other assignments (wsl)
cmd/vela-slack/plugin_test.go|213 col 3| only one cuddle assignment allowed before if statement (wsl)
cmd/vela-slack/plugin_test.go|116 col 3| only one cuddle assignment allowed before if statement (wsl)
cmd/vela-slack/plugin_test.go|120 col 3| only one cuddle assignment allowed before if statement (wsl)

Filtered Findings (0)

Annotations

Check failure on line 67 in cmd/vela-slack/plugin_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/plugin_test.go#L67

unused-parameter: parameter 'r' seems to be unused, consider removing or renaming it as _ (revive)
Raw output
cmd/vela-slack/plugin_test.go:67:72: unused-parameter: parameter 'r' seems to be unused, consider removing or renaming it as _ (revive)
	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
	                                                                      ^

Check failure on line 90 in cmd/vela-slack/plugin_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/plugin_test.go#L90

unused-parameter: parameter 'r' seems to be unused, consider removing or renaming it as _ (revive)
Raw output
cmd/vela-slack/plugin_test.go:90:72: unused-parameter: parameter 'r' seems to be unused, consider removing or renaming it as _ (revive)
	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
	                                                                      ^

Check failure on line 113 in cmd/vela-slack/plugin_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/plugin_test.go#L113

unused-parameter: parameter 'r' seems to be unused, consider removing or renaming it as _ (revive)
Raw output
cmd/vela-slack/plugin_test.go:113:72: unused-parameter: parameter 'r' seems to be unused, consider removing or renaming it as _ (revive)
	ta := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
	                                                                      ^

Check failure on line 486 in cmd/vela-slack/main.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/main.go#L486

SA1019: ldap.DialTLS is deprecated:  Use DialURL instead. (staticcheck)
Raw output
cmd/vela-slack/main.go:486:12: SA1019: ldap.DialTLS is deprecated:  Use DialURL instead. (staticcheck)
	l, err := ldap.DialTLS("tcp", fmt.Sprintf("%s:%s", ldapServer, ldapPort), config)
	          ^

Check failure on line 251 in cmd/vela-slack/plugin_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/plugin_test.go#L251

assignments should only be cuddled with other assignments (wsl)
Raw output
cmd/vela-slack/plugin_test.go:251:3: assignments should only be cuddled with other assignments (wsl)
		bytes, err := os.ReadFile("./testdata/slack_attachment_remote_bad.json")
		^

Check failure on line 115 in cmd/vela-slack/plugin_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/plugin_test.go#L115

assignments should only be cuddled with other assignments (wsl)
Raw output
cmd/vela-slack/plugin_test.go:115:3: assignments should only be cuddled with other assignments (wsl)
		bytes, err := os.ReadFile("./testdata/slack_attachment_remote.json")
		^

Check failure on line 119 in cmd/vela-slack/plugin_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/plugin_test.go#L119

assignments should only be cuddled with other assignments (wsl)
Raw output
cmd/vela-slack/plugin_test.go:119:3: assignments should only be cuddled with other assignments (wsl)
		_, err = w.Write(bytes)
		^

Check failure on line 213 in cmd/vela-slack/plugin_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/plugin_test.go#L213

only one cuddle assignment allowed before if statement (wsl)
Raw output
cmd/vela-slack/plugin_test.go:213:3: only one cuddle assignment allowed before if statement (wsl)
		if err != nil {
		^

Check failure on line 116 in cmd/vela-slack/plugin_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/plugin_test.go#L116

only one cuddle assignment allowed before if statement (wsl)
Raw output
cmd/vela-slack/plugin_test.go:116:3: only one cuddle assignment allowed before if statement (wsl)
		if err != nil {
		^

Check failure on line 120 in cmd/vela-slack/plugin_test.go

See this annotation in the file changed.

@github-actions github-actions / golangci

[golangci] cmd/vela-slack/plugin_test.go#L120

only one cuddle assignment allowed before if statement (wsl)
Raw output
cmd/vela-slack/plugin_test.go:120:3: only one cuddle assignment allowed before if statement (wsl)
		if err != nil {
		^