Skip to content

Update dependency golangci/golangci-lint to v1.62.0 #2765

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

Merged
merged 3 commits into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ jobs:
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
with:
working-directory: ${{ matrix.directory }}
version: v1.61.0 # renovate: datasource=github-tags depName=golangci/golangci-lint
version: v1.62.0 # renovate: datasource=github-tags depName=golangci/golangci-lint

njs-lint:
name: NJS Lint
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ repos:
- javascript

- repo: https://github.com/golangci/golangci-lint
rev: v1.61.0
rev: v1.62.0
hooks:
- id: golangci-lint-full
name: golangci-lint-root
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ GO_LINKER_FLAGS = $(GO_LINKER_FLAGS_OPTIMIZATIONS) $(GO_LINKER_FlAGS_VARS)

# tools versions
# renovate: datasource=github-tags depName=golangci/golangci-lint
GOLANGCI_LINT_VERSION = v1.61.0
GOLANGCI_LINT_VERSION = v1.62.0
# renovate: datasource=docker depName=kindest/node
KIND_K8S_VERSION = v1.31.1
# renovate: datasource=github-tags depName=norwoodj/helm-docs
2 changes: 1 addition & 1 deletion tests/suite/reconfig_test.go
Original file line number Diff line number Diff line change
@@ -194,7 +194,7 @@ var _ = Describe("Reconfiguration Performance Testing", Ordered, Label("nfr", "r
if err := k8sClient.List(ctx, &routes); err != nil {
return fmt.Errorf("error getting HTTPRoutes: %w", err)
}
Expect(len(routes.Items)).To(BeNumerically("==", resourceCount*3))
Expect(routes.Items).To(HaveLen(resourceCount * 3))

var pods core.PodList
if err := k8sClient.List(ctx, &pods); err != nil {