Skip to content

Commit c096395

Browse files
authored
Merge pull request #505 from kubernetes-sigs/dependabot/go_modules/all-cd97eefd49
build(deps): bump the all group across 1 directory with 5 updates
2 parents ff39024 + f30c07b commit c096395

File tree

6 files changed

+166
-172
lines changed

6 files changed

+166
-172
lines changed

.golangci.yml

Lines changed: 90 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,8 @@
1-
---
1+
version: "2"
22
run:
33
concurrency: 6
4-
timeout: 10m
5-
6-
issues:
7-
exclude-rules:
8-
# counterfeiter fakes are usually named 'fake_<something>.go'
9-
- path: fake_.*\.go
10-
linters:
11-
- gocritic
12-
- golint
13-
- dupl
14-
- path: examples/*
15-
linters:
16-
- gocritic
17-
- golint
18-
- dupl
19-
- staticcheck
20-
- goconst
21-
- errcheck
22-
- stylecheck #Since Example packages have _ in them this will break a bunch of tests unless we rename all of those packages
23-
exclude-dirs-use-default: false
24-
exclude-dirs:
25-
- (^|/)vendor($|/)
26-
- (^|/)testdata($|/)
27-
- (^|/)Godeps($|/)
28-
- (^|/)builtin($|/)
29-
- .*.gvm/.* # This is enabled to avoid linting the gvm install directory
304
linters:
31-
disable-all: true
5+
default: none
326
enable:
337
- asciicheck
348
- bodyclose
@@ -39,81 +13,107 @@ linters:
3913
- gocritic
4014
- gocyclo
4115
- godox
42-
- gofmt
43-
- gofumpt
4416
- goheader
45-
- goimports
46-
- revive
4717
- gomodguard
4818
- goprintffuncname
49-
- gosimple
5019
- govet
5120
- ineffassign
5221
- misspell
5322
- nakedret
5423
- prealloc
24+
- revive
5525
- rowserrcheck
5626
- sqlclosecheck
5727
- staticcheck
58-
- stylecheck
59-
- typecheck
6028
- unconvert
6129
- unparam
6230
- unused
6331
- whitespace
64-
65-
linters-settings:
66-
revive:
67-
confidence: 0.01
32+
settings:
33+
errcheck:
34+
check-type-assertions: true
35+
check-blank: true
36+
gocritic:
37+
enabled-checks:
38+
- commentedOutCode
39+
- nilValReturn
40+
- sloppyReassign
41+
- weakCond
42+
- octalLiteral
43+
- appendCombine
44+
- equalFold
45+
- hugeParam
46+
- indexAlloc
47+
- rangeExprCopy
48+
- rangeValCopy
49+
- boolExprSimplify
50+
- commentedOutImport
51+
- docStub
52+
- emptyFallthrough
53+
- emptyStringTest
54+
- hexLiteral
55+
- methodExprCall
56+
- stringXbytes
57+
- typeAssertChain
58+
- unlabelStmt
59+
- yodaStyleExpr
60+
- builtinShadow
61+
- importShadow
62+
- initClause
63+
- nestingReduce
64+
- paramTypeCombine
65+
- ptrToRefParam
66+
- typeUnparen
67+
- unnamedResult
68+
- unnecessaryBlock
69+
godox:
70+
keywords:
71+
- BUG
72+
- FIXME
73+
- HACK
74+
revive:
75+
confidence: 0.01
76+
rules:
77+
- name: duplicated-imports
78+
severity: error
79+
disabled: false
80+
exclusions:
81+
generated: lax
82+
presets:
83+
- comments
84+
- common-false-positives
85+
- legacy
86+
- std-error-handling
6887
rules:
69-
- name: duplicated-imports
70-
severity: error
71-
disabled: false
72-
godox:
73-
keywords:
74-
- BUG
75-
- FIXME
76-
- HACK
77-
errcheck:
78-
check-type-assertions: true
79-
check-blank: true
80-
gocritic:
81-
enabled-checks:
82-
# Diagnostic
83-
- commentedOutCode
84-
- nilValReturn
85-
- sloppyReassign
86-
- weakCond
87-
- octalLiteral
88-
89-
# Performance
90-
- appendCombine
91-
- equalFold
92-
- hugeParam
93-
- indexAlloc
94-
- rangeExprCopy
95-
- rangeValCopy
96-
97-
# Style
98-
- boolExprSimplify
99-
- commentedOutImport
100-
- docStub
101-
- emptyFallthrough
102-
- emptyStringTest
103-
- hexLiteral
104-
- methodExprCall
105-
- stringXbytes
106-
- typeAssertChain
107-
- unlabelStmt
108-
- yodaStyleExpr
109-
110-
# Opinionated
111-
- builtinShadow
112-
- importShadow
113-
- initClause
114-
- nestingReduce
115-
- paramTypeCombine
116-
- ptrToRefParam
117-
- typeUnparen
118-
- unnamedResult
119-
- unnecessaryBlock
88+
- linters:
89+
- dupl
90+
- gocritic
91+
- golint
92+
path: fake_.*\.go
93+
- linters:
94+
- dupl
95+
- errcheck
96+
- goconst
97+
- gocritic
98+
- golint
99+
- staticcheck
100+
path: examples/*
101+
paths:
102+
- (^|/)vendor($|/)
103+
- (^|/)testdata($|/)
104+
- (^|/)Godeps($|/)
105+
- (^|/)builtin($|/)
106+
- .*.gvm/.*
107+
formatters:
108+
enable:
109+
- gofmt
110+
- gofumpt
111+
- goimports
112+
exclusions:
113+
generated: lax
114+
paths:
115+
- (^|/)vendor($|/)
116+
- (^|/)testdata($|/)
117+
- (^|/)Godeps($|/)
118+
- (^|/)builtin($|/)
119+
- .*.gvm/.*

go.mod

Lines changed: 19 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
module sigs.k8s.io/e2e-framework
22

3-
go 1.23.0
4-
5-
toolchain go1.23.4
3+
go 1.24.0
64

75
require (
86
github.com/stretchr/testify v1.10.0
97
github.com/vladimirvivien/gexe v0.5.0
10-
k8s.io/api v0.32.3
11-
k8s.io/apimachinery v0.32.3
12-
k8s.io/client-go v0.32.3
13-
k8s.io/component-base v0.32.3
8+
k8s.io/api v0.33.1
9+
k8s.io/apimachinery v0.33.1
10+
k8s.io/client-go v0.33.1
11+
k8s.io/component-base v0.33.1
1412
k8s.io/klog/v2 v2.130.1
15-
sigs.k8s.io/controller-runtime v0.20.4
13+
sigs.k8s.io/controller-runtime v0.21.0
1614
sigs.k8s.io/yaml v1.4.0
1715
)
1816

@@ -29,13 +27,10 @@ require (
2927
github.com/go-openapi/jsonreference v0.20.2 // indirect
3028
github.com/go-openapi/swag v0.23.0 // indirect
3129
github.com/gogo/protobuf v1.3.2 // indirect
32-
github.com/golang/protobuf v1.5.4 // indirect
33-
github.com/google/gnostic-models v0.6.8 // indirect
34-
github.com/google/go-cmp v0.6.0 // indirect
35-
github.com/google/gofuzz v1.2.0 // indirect
30+
github.com/google/gnostic-models v0.6.9 // indirect
31+
github.com/google/go-cmp v0.7.0 // indirect
3632
github.com/google/uuid v1.6.0 // indirect
37-
github.com/gorilla/websocket v1.5.0 // indirect
38-
github.com/inconshreveable/mousetrap v1.1.0 // indirect
33+
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
3934
github.com/josharian/intern v1.0.0 // indirect
4035
github.com/json-iterator/go v1.1.12 // indirect
4136
github.com/mailru/easyjson v0.7.7 // indirect
@@ -46,27 +41,27 @@ require (
4641
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
4742
github.com/pkg/errors v0.9.1 // indirect
4843
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
49-
github.com/prometheus/client_golang v1.19.1 // indirect
44+
github.com/prometheus/client_golang v1.22.0 // indirect
5045
github.com/prometheus/client_model v0.6.1 // indirect
51-
github.com/prometheus/common v0.55.0 // indirect
46+
github.com/prometheus/common v0.62.0 // indirect
5247
github.com/prometheus/procfs v0.15.1 // indirect
53-
github.com/spf13/cobra v1.8.1 // indirect
5448
github.com/spf13/pflag v1.0.5 // indirect
5549
github.com/x448/float16 v0.8.4 // indirect
56-
go.opentelemetry.io/otel v1.28.0 // indirect
57-
go.opentelemetry.io/otel/trace v1.28.0 // indirect
50+
go.opentelemetry.io/otel v1.33.0 // indirect
51+
go.opentelemetry.io/otel/trace v1.33.0 // indirect
5852
golang.org/x/net v0.38.0 // indirect
59-
golang.org/x/oauth2 v0.23.0 // indirect
53+
golang.org/x/oauth2 v0.27.0 // indirect
6054
golang.org/x/sys v0.31.0 // indirect
6155
golang.org/x/term v0.30.0 // indirect
6256
golang.org/x/text v0.23.0 // indirect
63-
golang.org/x/time v0.7.0 // indirect
64-
google.golang.org/protobuf v1.35.1 // indirect
57+
golang.org/x/time v0.9.0 // indirect
58+
google.golang.org/protobuf v1.36.5 // indirect
6559
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
6660
gopkg.in/inf.v0 v0.9.1 // indirect
6761
gopkg.in/yaml.v3 v3.0.1 // indirect
68-
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
62+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
6963
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
7064
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
71-
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
65+
sigs.k8s.io/randfill v1.0.0 // indirect
66+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
7267
)

0 commit comments

Comments
 (0)