Skip to content

Commit ff555bb

Browse files
committed
go: update to 1.22.3
1 parent 242ec51 commit ff555bb

File tree

3 files changed

+77
-97
lines changed

3 files changed

+77
-97
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.0-alpine
1+
FROM golang:1.22.3-alpine
22

33
WORKDIR /src/
44
COPY . /src/

go.mod

+26-23
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,53 @@
11
module github.com/vdjagilev/nmap-formatter/v3
22

3-
go 1.22.2
3+
go 1.22.3
44

55
require (
6-
github.com/expr-lang/expr v1.16.5
6+
github.com/expr-lang/expr v1.16.7
77
github.com/google/uuid v1.6.0
88
github.com/mattn/go-sqlite3 v1.14.22
99
github.com/spf13/cobra v1.8.0
1010
github.com/xuri/excelize/v2 v2.8.1
11-
golang.org/x/net v0.24.0
11+
golang.org/x/net v0.25.0
1212
oss.terrastruct.com/d2 v0.6.5
1313
)
1414

15+
// Specific case for d2, https://github.com/terrastruct/d2/issues/1524
16+
require cdr.dev/slog v1.4.2-0.20221206192828-e4803b10ae17 // indirect
17+
1518
require (
16-
cdr.dev/slog v1.4.2-0.20221206192828-e4803b10ae17 // indirect
17-
github.com/PuerkitoBio/goquery v1.8.1 // indirect
19+
github.com/PuerkitoBio/goquery v1.9.2 // indirect
1820
github.com/alecthomas/chroma v0.10.0 // indirect
19-
github.com/alecthomas/chroma/v2 v2.5.0 // indirect
21+
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
2022
github.com/andybalholm/cascadia v1.3.2 // indirect
21-
github.com/dlclark/regexp2 v1.10.0 // indirect
22-
github.com/dop251/goja v0.0.0-20231027120936-b396bb4c349d // indirect
23-
github.com/fatih/color v1.13.0 // indirect
24-
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
23+
github.com/dlclark/regexp2 v1.11.0 // indirect
24+
github.com/dop251/goja v0.0.0-20240516125602-ccbae20bcec2 // indirect
25+
github.com/fatih/color v1.17.0 // indirect
26+
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
2527
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
26-
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
27-
github.com/google/pprof v0.0.0-20231205033806-a5a03c77bf08 // indirect
28+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
29+
github.com/google/pprof v0.0.0-20240521024322-9665fa269a30 // indirect
2830
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2931
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
30-
github.com/mattn/go-colorable v0.1.9 // indirect
32+
github.com/mattn/go-colorable v0.1.13 // indirect
3133
github.com/mattn/go-isatty v0.0.20 // indirect
3234
github.com/mazznoer/csscolorparser v0.1.3 // indirect
3335
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
3436
github.com/richardlehane/mscfb v1.0.4 // indirect
3537
github.com/richardlehane/msoleps v1.0.3 // indirect
36-
github.com/rivo/uniseg v0.4.4 // indirect
38+
github.com/rivo/uniseg v0.4.7 // indirect
3739
github.com/spf13/pflag v1.0.5 // indirect
38-
github.com/xuri/efp v0.0.0-20231025114914-d1ff6096ae53 // indirect
39-
github.com/xuri/nfp v0.0.0-20230919160717-d98342af3f05 // indirect
40-
github.com/yuin/goldmark v1.6.0 // indirect
40+
github.com/stretchr/testify v1.9.0 // indirect
41+
github.com/xuri/efp v0.0.0-20240408161823-9ad904a10d6d // indirect
42+
github.com/xuri/nfp v0.0.0-20240318013403-ab9948c2c4a7 // indirect
43+
github.com/yuin/goldmark v1.7.1 // indirect
4144
go.opencensus.io v0.24.0 // indirect
42-
golang.org/x/crypto v0.22.0 // indirect
43-
golang.org/x/exp v0.0.0-20231127185646-65229373498e // indirect
44-
golang.org/x/image v0.14.0 // indirect
45-
golang.org/x/sys v0.19.0 // indirect
46-
golang.org/x/term v0.19.0 // indirect
47-
golang.org/x/text v0.14.0 // indirect
45+
golang.org/x/crypto v0.23.0 // indirect
46+
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
47+
golang.org/x/image v0.16.0 // indirect
48+
golang.org/x/sys v0.20.0 // indirect
49+
golang.org/x/term v0.20.0 // indirect
50+
golang.org/x/text v0.15.0 // indirect
4851
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
4952
gonum.org/v1/plot v0.14.0 // indirect
5053
oss.terrastruct.com/util-go v0.0.0-20231101220827-55b3812542c2 // indirect

0 commit comments

Comments
 (0)