Skip to content

Commit 60ec5ea

Browse files
authored
Merge branch 'main' into chore/version-bump
2 parents 89a0e35 + ccf6aa5 commit 60ec5ea

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Lint Go
3636
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
3737
with:
38-
version: v2.1.6 # renovate: datasource=github-tags depName=golangci/golangci-lint
38+
version: v2.3.1 # renovate: datasource=github-tags depName=golangci/golangci-lint
3939

4040
actionlint:
4141
name: Actionlint

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
- id: detect-private-key
2525

2626
- repo: https://github.com/golangci/golangci-lint
27-
rev: v2.1.6
27+
rev: v2.3.1
2828
hooks:
2929
- id: golangci-lint-full
3030

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# renovate: datasource=github-tags depName=golangci/golangci-lint
2-
GOLANGCI_LINT_VERSION = v2.1.6
2+
GOLANGCI_LINT_VERSION = v2.3.1
33

44
test: unit-test test-integration test-integration-no-stream-block clean
55

tests/client_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,8 @@ func TestStreamStats(t *testing.T) {
850850
}
851851

852852
// make connection so we have stream server zone stats - ignore response
853-
_, err = net.Dial("tcp", helpers.GetStreamAddress())
853+
d := &net.Dialer{}
854+
_, err = d.DialContext(context.Background(), "tcp", helpers.GetStreamAddress())
854855
if err != nil {
855856
t.Errorf("Error making tcp connection: %v", err)
856857
}

0 commit comments

Comments
 (0)