From 497d79785f98bf5477e067b953d2c1fd56b31536 Mon Sep 17 00:00:00 2001 From: Dmitriy Matrenichev Date: Tue, 4 Oct 2022 18:13:22 +0300 Subject: [PATCH] chore: bump golangci-lint to v1.50.0 Bump golangci-lint to v1.50.0 Signed-off-by: Dmitriy Matrenichev --- Makefile | 4 ++-- internal/config/constants.go | 2 +- internal/project/auto/builder.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 5fd74b41..8bedaeac 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2022-09-27T14:21:38Z by kres 8e6d786-dirty. +# Generated on 2022-10-04T15:22:25Z by kres 5d74010. # common variables @@ -11,7 +11,7 @@ ARTIFACTS := _out REGISTRY ?= ghcr.io USERNAME ?= siderolabs REGISTRY_AND_USERNAME ?= $(REGISTRY)/$(USERNAME) -GOLANGCILINT_VERSION ?= v1.49.0 +GOLANGCILINT_VERSION ?= v1.50.0 GOFUMPT_VERSION ?= v0.3.1 GO_VERSION ?= 1.19 GOIMPORTS_VERSION ?= v0.1.12 diff --git a/internal/config/constants.go b/internal/config/constants.go index cdff0ed0..3152424c 100644 --- a/internal/config/constants.go +++ b/internal/config/constants.go @@ -20,7 +20,7 @@ const ( GoImportsVersion = "v0.1.12" // GolangCIlintVersion is the version of golangci-lint. // renovate: datasource=go depName=github.com/golangci/golangci-lint - GolangCIlintVersion = "v1.49.0" + GolangCIlintVersion = "v1.50.0" // GolangContainerImageVersion is the default golang container image. // renovate: datasource=docker versioning=docker depName=golang GolangContainerImageVersion = "1.19-alpine" diff --git a/internal/project/auto/builder.go b/internal/project/auto/builder.go index 71cdd013..ec1ab574 100644 --- a/internal/project/auto/builder.go +++ b/internal/project/auto/builder.go @@ -71,7 +71,7 @@ func (builder *builder) build() error { detect: builder.DetectMarkdown, build: builder.BuildMarkdown, }, - { // custom should the the last in the list, so that step could be hooked up to the build + { // custom should be the last in the list, so that step could be hooked up to the build detect: builder.DetectCustom, build: builder.BuildCustom, },