chore(deps): update dependency golangci/golangci-lint to v1.52.0 (#79)

This commit is contained in:
renovate[bot] 2023-03-20 09:38:05 +01:00 committed by GitHub
parent 7b56824286
commit b6c1f75962
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# renovate: datasource=github-releases depName=mvdan/gofumpt
GOFUMPT_PACKAGE_VERSION := v0.4.0
# renovate: datasource=github-releases depName=golangci/golangci-lint
GOLANGCI_LINT_PACKAGE_VERSION := v1.51.2
GOLANGCI_LINT_PACKAGE_VERSION := v1.52.0
EXECUTABLE := drone-yaml

View File

@ -27,7 +27,7 @@ var ErrCyclicalPipelineDependency = errors.New("linter: cyclical pipeline depend
var ErrPipelineSelfDependency = errors.New("linter: pipeline cannot have a dependency on itself")
// Manifest performs lint operations for a manifest.
func Manifest(manifest *yaml.Manifest, trusted bool) error {
func Manifest(manifest *yaml.Manifest) error {
return checkPipelines(manifest)
}