Skip to content

Commit c414b4d

Browse files
chore(deps): update tool github.com/golangci/golangci-lint/cmd/golangci-lint to v1.63.2 (#3587)
* chore(deps): update tool github.com/golangci/golangci-lint/cmd/golangci-lint to v1.63.2 * Reduce golangci-lint concurrency to 3 We've had some OOM kills on Github Actions runners, hopefully this helps. * Don't run goheader on upgrade_strategy.go goheader in golanci-lint v1.63.2 incorrectly flags these files as having invalid headers. Root cause not yet known. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Mikołaj Świątek <[email protected]>
1 parent 5a270c9 commit c414b4d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.golangci.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
run:
2-
concurrency: 4
2+
concurrency: 3
33
timeout: 5m
44
issues-exit-code: 1
55
tests: true
@@ -57,6 +57,10 @@ issues:
5757
- linters:
5858
- gci
5959
source: "// \\+kubebuilder"
60+
# For some reason goheader complains about these files, even though the headers are correct
61+
- linters:
62+
- goheader
63+
path: upgrade_strategy\.go
6064

6165
linters:
6266
enable:

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ KUSTOMIZE_VERSION ?= v5.5.0
496496
# renovate: datasource=go depName=sigs.k8s.io/controller-tools/cmd/controller-gen
497497
CONTROLLER_TOOLS_VERSION ?= v0.17.0
498498
# renovate: datasource=go depName=github.com/golangci/golangci-lint/cmd/golangci-lint
499-
GOLANGCI_LINT_VERSION ?= v1.62.2
499+
GOLANGCI_LINT_VERSION ?= v1.63.2
500500
# renovate: datasource=go depName=sigs.k8s.io/kind
501501
KIND_VERSION ?= v0.26.0
502502
# renovate: datasource=go depName=github.com/kyverno/chainsaw

0 commit comments

Comments
 (0)