Skip to content

Commit d0a4e3d

Browse files
committed
Updated go versions
1 parent d43afa1 commit d0a4e3d

File tree

3 files changed

+32
-26
lines changed

3 files changed

+32
-26
lines changed

.github/workflows/merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
go-version: [ '1.21', '1.22' ]
34+
go-version: [ '1.23', '1.24' ]
3535
steps:
3636
- name: Checkout repository
3737
uses: actions/checkout@v4

go.mod

Lines changed: 30 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,56 @@
11
module github.com/mutablelogic/go-client
22

3-
go 1.22
3+
go 1.23.5
44

5-
toolchain go1.22.3
5+
toolchain go1.24.0
66

77
require (
8-
github.com/alecthomas/kong v0.2.1-0.20190708041108-0548c6b1afae
9-
github.com/andreburgaud/crypt2go v1.5.0
8+
github.com/alecthomas/kong v1.10.0
9+
github.com/andreburgaud/crypt2go v1.8.0
1010
github.com/djthorpe/go-errors v1.0.3
11-
github.com/djthorpe/go-tablewriter v0.0.7
11+
github.com/djthorpe/go-tablewriter v0.0.11
1212
github.com/go-audio/audio v1.0.0
1313
github.com/go-audio/wav v1.1.0
14-
github.com/mutablelogic/go-server v1.4.7
15-
github.com/stretchr/testify v1.9.0
14+
github.com/mutablelogic/go-server v1.5.5
15+
github.com/stretchr/testify v1.10.0
1616
github.com/xdg-go/pbkdf2 v1.0.0
17-
golang.org/x/crypto v0.31.0
18-
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
19-
golang.org/x/term v0.27.0
17+
golang.org/x/crypto v0.36.0
18+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394
19+
golang.org/x/term v0.30.0
2020
)
2121

2222
require (
2323
github.com/MichaelMure/go-term-text v0.3.1 // indirect
24-
github.com/alecthomas/chroma v0.7.1 // indirect
24+
github.com/alecthomas/chroma v0.10.0 // indirect
2525
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
2626
github.com/disintegration/imaging v1.6.2 // indirect
27-
github.com/dlclark/regexp2 v1.1.6 // indirect
27+
github.com/djthorpe/go-pg v1.0.3 // indirect
28+
github.com/dlclark/regexp2 v1.11.5 // indirect
2829
github.com/eliukblau/pixterm/pkg/ansimage v0.0.0-20191210081756-9fb6cf8c2f75 // indirect
29-
github.com/fatih/color v1.9.0 // indirect
30-
github.com/gomarkdown/markdown v0.0.0-20191123064959-2c17d62f5098 // indirect
31-
github.com/kyokomi/emoji/v2 v2.2.8 // indirect
32-
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
33-
github.com/mattn/go-colorable v0.1.4 // indirect
34-
github.com/mattn/go-isatty v0.0.11 // indirect
35-
github.com/pkg/errors v0.8.1 // indirect
36-
golang.org/x/image v0.0.0-20191206065243-da761ea9ff43 // indirect
37-
golang.org/x/net v0.33.0 // indirect
30+
github.com/fatih/color v1.18.0 // indirect
31+
github.com/gomarkdown/markdown v0.0.0-20250311123330-531bef5e742b // indirect
32+
github.com/jackc/pgpassfile v1.0.0 // indirect
33+
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
34+
github.com/jackc/pgx/v5 v5.7.3 // indirect
35+
github.com/jackc/puddle/v2 v2.2.2 // indirect
36+
github.com/kyokomi/emoji/v2 v2.2.13 // indirect
37+
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
38+
github.com/mattn/go-colorable v0.1.14 // indirect
39+
github.com/mattn/go-isatty v0.0.20 // indirect
40+
github.com/pkg/errors v0.9.1 // indirect
41+
golang.org/x/image v0.25.0 // indirect
42+
golang.org/x/net v0.38.0 // indirect
43+
golang.org/x/sync v0.12.0 // indirect
44+
golang.org/x/text v0.23.0 // indirect
3845
)
3946

4047
require (
4148
github.com/MichaelMure/go-term-markdown v0.1.4
4249
github.com/davecgh/go-spew v1.1.1 // indirect
4350
github.com/go-audio/riff v1.0.0 // indirect
44-
github.com/mattn/go-runewidth v0.0.15 // indirect
51+
github.com/mattn/go-runewidth v0.0.16 // indirect
4552
github.com/pmezard/go-difflib v1.0.0 // indirect
4653
github.com/rivo/uniseg v0.4.7 // indirect
47-
golang.org/x/sys v0.28.0 // indirect
54+
golang.org/x/sys v0.32.0 // indirect
4855
gopkg.in/yaml.v3 v3.0.1 // indirect
4956
)

go.sum

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,8 @@ golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ss
8181
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 h1:vr/HnozRka3pE4EsMEg1lgkXJkTFJCVUX+S/ZT6wYzM=
8282
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842/go.mod h1:XtvwrStGgqGPLc4cjQfWqZHG1YFdYs6swckp8vpsjnc=
8383
golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
84+
golang.org/x/image v0.0.0-20191206065243-da761ea9ff43 h1:gQ6GUSD102fPgli+Yb4cR/cGaHF7tNBt+GYoRCpGC7s=
8485
golang.org/x/image v0.0.0-20191206065243-da761ea9ff43/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
85-
golang.org/x/image v0.18.0 h1:jGzIakQa/ZXI1I0Fxvaa9W7yP25TqT6cHIHn+6CqvSQ=
86-
golang.org/x/image v0.18.0/go.mod h1:4yyo5vMFQjVjUcVk4jEQcU9MGy/rulF5WvUILseCM2E=
8786
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
8887
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
8988
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=

0 commit comments

Comments
 (0)