chore(deps): update dependency golangci/golangci-lint to v2.3.1 (#2158)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jan-Otto Kröpke <mail@jkroepke.de>
This commit is contained in:
renovate[bot]
2025-08-03 04:27:21 +02:00
committed by GitHub
parent c4ab8cb8a5
commit 6c9a5b66e2
3 changed files with 7 additions and 3 deletions

View File

@@ -38,7 +38,9 @@ func TestGetTCPConnectionStates(t *testing.T) {
func TestGetOwnerPIDOfTCPPort(t *testing.T) {
t.Parallel()
lister, err := net.Listen("tcp", "127.0.0.1:0")
var listenConf net.ListenConfig
lister, err := listenConf.Listen(t.Context(), "tcp", "127.0.0.1:0")
require.NoError(t, err)
t.Cleanup(func() {