File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 2828 - name : Run static checks
2929 uses : golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9.0.0
3030 with :
31- version : v2.4.0
31+ # renovate: datasource=github-releases depName=golangci/golangci-lint
32+ version : v2.6.1
3233 args : --config=.golangci.yml --verbose
3334 skip-cache : true
3435 - name : Check module tidiness
5758 uses : golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9.0.0
5859 with :
5960 working-directory : ./cmd
60- version : v2.4.0
61+ # renovate: datasource=github-releases depName=golangci/golangci-lint
62+ version : v2.6.1
6163 args : --config=../.golangci.yml --verbose
6264 skip-cache : true
6365 - name : Check module tidiness
8890 uses : golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9.0.0
8991 with :
9092 working-directory : ./flow
91- version : v2.4.0
93+ # renovate: datasource=github-releases depName=golangci/golangci-lint
94+ version : v2.6.1
9295 args : --config=../.golangci.yml --verbose
9396 skip-cache : true
9497 - name : Check module tidiness
Original file line number Diff line number Diff line change @@ -7,5 +7,6 @@ INSTALL = $(QUIET)install
77BINDIR ?= /usr/local/bin
88TARGET := fake
99
10- GOLANGCILINT_WANT_VERSION = 2.0.1
10+ # renovate: datasource=github-releases depName=golangci/golangci-lint
11+ GOLANGCILINT_WANT_VERSION = 2.6.1
1112GOLANGCILINT_VERSION = $(shell golangci-lint version --short 2>/dev/null)
Original file line number Diff line number Diff line change @@ -67,13 +67,15 @@ func WithLayer4TCP() Layer4Option {
6767
6868// WithLayer4TCPSourcePort specifies the TCP source port for Layer4. Only
6969// useful in conjunction with WithLayer4TCP.
70+ //
7071// Deprecated: use WithLayer4SourcePort instead.
7172func WithLayer4TCPSourcePort (port uint32 ) Layer4Option {
7273 return WithLayer4SourcePort (port )
7374}
7475
7576// WithLayer4TCPDestinationPort specifies the TCP destination port for Layer4.
7677// Only useful in conjunction with WithLayer4TCP.
78+ //
7779// Deprecated: use WithLayer4DestinationPort instead.
7880func WithLayer4TCPDestinationPort (port uint32 ) Layer4Option {
7981 return WithLayer4DestinationPort (port )
@@ -106,13 +108,15 @@ func WithLayer4UDP() Layer4Option {
106108
107109// WithLayer4UDPSourcePort specifies the UDP source port. Only useful in
108110// conjunction with WithLayer4UDP.
111+ //
109112// Deprecated: use WithLayer4SourcePort instead.
110113func WithLayer4UDPSourcePort (port uint32 ) Layer4Option {
111114 return WithLayer4SourcePort (port )
112115}
113116
114117// WithLayer4UDPDestinationPort specifies the UDP destination port. Only useful
115118// in conjunction with WithLayer4UDP.
119+ //
116120// Deprecated: use WithLayer4DestinationPort instead.
117121func WithLayer4UDPDestinationPort (port uint32 ) Layer4Option {
118122 return WithLayer4DestinationPort (port )
You can’t perform that action at this time.
0 commit comments