chore(deps): pin dependencies #371
reviewdog [golangci] report
reported by reviewdog 🐶
Findings (3)
cmd/vela-slack/main.go|8 col 2| SA1019: "io/ioutil" has been deprecated since Go 1.19: As of Go 1.16, the same functionality is now provided by package [io] or package [os], and those implementations should be preferred in new code. See the specific function documentation for details. (staticcheck)
cmd/vela-slack/plugin.go|9 col 2| SA1019: "io/ioutil" has been deprecated since Go 1.19: As of Go 1.16, the same functionality is now provided by package [io] or package [os], and those implementations should be preferred in new code. See the specific function documentation for details. (staticcheck)
cmd/vela-slack/main.go|27 col 1| directive // nolint: funlen // ignore length for main
should be written without leading space as //nolint: funlen // ignore length for main
(nolintlint)
Filtered Findings (0)
Annotations
Check failure on line 8 in cmd/vela-slack/main.go
github-actions / golangci
[golangci] cmd/vela-slack/main.go#L8
SA1019: "io/ioutil" has been deprecated since Go 1.19: As of Go 1.16, the same functionality is now provided by package [io] or package [os], and those implementations should be preferred in new code. See the specific function documentation for details. (staticcheck)
Raw output
cmd/vela-slack/main.go:8:2: SA1019: "io/ioutil" has been deprecated since Go 1.19: As of Go 1.16, the same functionality is now provided by package [io] or package [os], and those implementations should be preferred in new code. See the specific function documentation for details. (staticcheck)
"io/ioutil"
^
Check failure on line 9 in cmd/vela-slack/plugin.go
github-actions / golangci
[golangci] cmd/vela-slack/plugin.go#L9
SA1019: "io/ioutil" has been deprecated since Go 1.19: As of Go 1.16, the same functionality is now provided by package [io] or package [os], and those implementations should be preferred in new code. See the specific function documentation for details. (staticcheck)
Raw output
cmd/vela-slack/plugin.go:9:2: SA1019: "io/ioutil" has been deprecated since Go 1.19: As of Go 1.16, the same functionality is now provided by package [io] or package [os], and those implementations should be preferred in new code. See the specific function documentation for details. (staticcheck)
"io/ioutil"
^
Check failure on line 27 in cmd/vela-slack/main.go
github-actions / golangci
[golangci] cmd/vela-slack/main.go#L27
directive `// nolint: funlen // ignore length for main` should be written without leading space as `//nolint: funlen // ignore length for main` (nolintlint)
Raw output
cmd/vela-slack/main.go:27:1: directive `// nolint: funlen // ignore length for main` should be written without leading space as `//nolint: funlen // ignore length for main` (nolintlint)
// nolint: funlen // ignore length for main
^