Skip to content

Commit 8ac863e

Browse files
Update dependency golangci/golangci-lint to v1.63.3 (#2965)
* Update dependency golangci/golangci-lint to v1.63.3 | datasource | package | from | to | | ----------- | ---------------------- | ------- | ------- | | github-tags | golangci/golangci-lint | v1.62.2 | v1.63.3 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Fix lint error --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Luca Comellini <[email protected]>
1 parent 53bd0e0 commit 8ac863e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
4141
with:
4242
working-directory: ${{ matrix.directory }}
43-
version: v1.62.2 # renovate: datasource=github-tags depName=golangci/golangci-lint
43+
version: v1.63.3 # renovate: datasource=github-tags depName=golangci/golangci-lint
4444

4545
njs-lint:
4646
name: NJS Lint

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repos:
3939
- javascript
4040

4141
- repo: https://github.com/golangci/golangci-lint
42-
rev: v1.62.2
42+
rev: v1.63.3
4343
hooks:
4444
- id: golangci-lint-full
4545
name: golangci-lint-root

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GO_LINKER_FLAGS = $(GO_LINKER_FLAGS_OPTIMIZATIONS) $(GO_LINKER_FlAGS_VARS)
2323

2424
# tools versions
2525
# renovate: datasource=github-tags depName=golangci/golangci-lint
26-
GOLANGCI_LINT_VERSION = v1.62.2
26+
GOLANGCI_LINT_VERSION = v1.63.3
2727
# renovate: datasource=docker depName=kindest/node
2828
KIND_K8S_VERSION = v1.32.0
2929
# renovate: datasource=github-tags depName=norwoodj/helm-docs

internal/mode/static/state/resolver/resolver_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ func bench(b *testing.B, svcNsName types.NamespacedName,
625625
list discoveryV1.EndpointSliceList, initSet initEndpointSetFunc, n int,
626626
) {
627627
b.Helper()
628-
for i := 0; i < b.N; i++ {
628+
for range b.N {
629629
res, err := resolveEndpoints(svcNsName, v1.ServicePort{Port: 80}, list, initSet, dualAddressType)
630630
if len(res) != n {
631631
b.Fatalf("expected %d endpoints, got %d", n, len(res))

0 commit comments

Comments
 (0)