File tree Expand file tree Collapse file tree 4 files changed +15
-2
lines changed
Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,13 @@ updates:
2525 directory : /client
2626 schedule :
2727 interval : weekly
28+ groups :
29+ all :
30+ patterns :
31+ - " *"
32+ update-types :
33+ - minor
34+ - patch
2835 labels :
2936 - dependencies
3037
Original file line number Diff line number Diff line change 4040 run : go vet ./...
4141 working-directory : client
4242
43+ - name : Lint client
44+ uses : golangci/golangci-lint-action@v7
45+ with :
46+ version : v2.9.0
47+ working-directory : client
48+
4349 - name : Build Docker image
4450 run : docker build ./client
Original file line number Diff line number Diff line change 11module github.com/chipmk/docker-mac-net-connect/client
22
3- go 1.17
3+ go 1.26
44
55require (
66 github.com/coreos/go-iptables v0.6.0
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ func main() {
109109 os .Exit (ExitSetupFailed )
110110 }
111111
112- defer c .Close ()
112+ defer func () { _ = c .Close () } ()
113113
114114 vmPrivateKey , err := wgtypes .ParseKey (vmPrivateKeyString )
115115 if err != nil {
You can’t perform that action at this time.
0 commit comments