Skip to content

Commit 342ae24

Browse files
authored
chore: updated deps (nekomeowww#192)
Signed-off-by: Neko Ayaka <[email protected]>
1 parent 2490160 commit 342ae24

File tree

6 files changed

+153
-165
lines changed

6 files changed

+153
-165
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# # 设定 Go 环境
2121
# - uses: actions/setup-go@v3
2222
# with:
23-
# go-version: "^1.20.0"
23+
# go-version: "^1.22.0"
2424
# cache: true
2525

2626
# # Get values for cache paths to be used in later steps
@@ -62,7 +62,7 @@ jobs:
6262
# 设定 Go 环境
6363
- uses: actions/setup-go@v3
6464
with:
65-
go-version: "^1.20.0"
65+
go-version: "^1.22.0"
6666
cache: true
6767

6868
# Get values for cache paths to be used in later steps
@@ -97,7 +97,7 @@ jobs:
9797
- uses: actions/checkout@v3
9898
- uses: actions/setup-go@v3
9999
with:
100-
go-version: "^1.20"
100+
go-version: "^1.22.0"
101101
- uses: ent/contrib/ci@master
102102

103103
lint:
@@ -106,7 +106,7 @@ jobs:
106106
steps:
107107
- uses: actions/setup-go@v4
108108
with:
109-
go-version: "^1.20.0"
109+
go-version: "^1.22.0"
110110
cache: true
111111

112112
- uses: actions/checkout@v3
@@ -158,7 +158,7 @@ jobs:
158158
- name: Setup Go
159159
uses: actions/setup-go@v3
160160
with:
161-
go-version: "^1.20.0"
161+
go-version: "^1.22.0"
162162
cache: true
163163

164164
# Get values for cache paths to be used in later steps

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# --- builder ---
4-
FROM golang:1.21 as builder
4+
FROM golang:1.22 as builder
55

66
RUN GO111MODULE=on
77

ent/runtime/runtime.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 45 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,109 +1,108 @@
11
module github.com/nekomeowww/insights-bot
22

3-
go 1.21
3+
go 1.22
4+
5+
toolchain go1.22.0
46

57
require (
6-
entgo.io/ent v0.12.5
7-
github.com/PuerkitoBio/goquery v1.8.1
8+
entgo.io/ent v0.13.1
9+
github.com/PuerkitoBio/goquery v1.9.1
810
github.com/alexliesenfeld/health v0.8.0
9-
github.com/disgoorg/disgo v0.17.0
11+
github.com/disgoorg/disgo v0.17.2
1012
github.com/disgoorg/snowflake/v2 v2.0.1
1113
github.com/gin-gonic/gin v1.9.1
12-
github.com/go-shiori/go-readability v0.0.0-20231029095239-6b97d5aba789
14+
github.com/go-shiori/go-readability v0.0.0-20240204090920-819593fddc6b
1315
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
14-
github.com/google/uuid v1.4.0
16+
github.com/google/uuid v1.6.0
1517
github.com/gookit/color v1.5.4
16-
github.com/imroc/req/v3 v3.42.2
18+
github.com/imroc/req/v3 v3.43.1
1719
github.com/joho/godotenv v1.5.1
1820
github.com/lib/pq v1.10.9
1921
github.com/maxbrunsfeld/counterfeiter/v6 v6.6.1
20-
github.com/nekomeowww/fo v1.2.1
22+
github.com/nekomeowww/fo v1.3.0
2123
github.com/nekomeowww/go-pinecone v0.1.0
2224
github.com/nekomeowww/timecapsule/v2 v2.2.0
23-
github.com/nekomeowww/xo v1.3.0
25+
github.com/nekomeowww/xo v1.4.0
2426
github.com/nicksnyder/go-i18n/v2 v2.4.0
2527
github.com/pkoukk/tiktoken-go v0.1.6
26-
github.com/redis/rueidis v1.0.23
28+
github.com/redis/rueidis v1.0.32
2729
github.com/samber/lo v1.39.0
28-
github.com/sashabaranov/go-openai v1.17.9
30+
github.com/sashabaranov/go-openai v1.20.3
2931
github.com/sirupsen/logrus v1.9.3
30-
github.com/slack-go/slack v0.12.3
32+
github.com/slack-go/slack v0.12.5
3133
github.com/sourcegraph/conc v0.3.0
3234
github.com/stretchr/testify v1.8.4
33-
go.uber.org/fx v1.20.1
35+
go.uber.org/fx v1.21.0
3436
go.uber.org/multierr v1.11.0
35-
go.uber.org/ratelimit v0.3.0
36-
go.uber.org/zap v1.26.0
37+
go.uber.org/ratelimit v0.3.1
38+
go.uber.org/zap v1.27.0
3739
golang.org/x/text v0.14.0
3840
gopkg.in/yaml.v3 v3.0.1
3941
)
4042

4143
require (
42-
ariga.io/atlas v0.15.0 // indirect
44+
ariga.io/atlas v0.19.2 // indirect
4345
github.com/agext/levenshtein v1.2.3 // indirect
44-
github.com/andybalholm/brotli v1.0.6 // indirect
46+
github.com/andybalholm/brotli v1.1.0 // indirect
4547
github.com/andybalholm/cascadia v1.3.2 // indirect
4648
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
4749
github.com/benbjohnson/clock v1.3.5 // indirect
48-
github.com/bytedance/sonic v1.10.2 // indirect
50+
github.com/bytedance/sonic v1.11.3 // indirect
4951
github.com/cespare/xxhash/v2 v2.2.0 // indirect
5052
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
5153
github.com/chenzhuoyu/iasm v0.9.1 // indirect
52-
github.com/cloudflare/circl v1.3.6 // indirect
54+
github.com/cloudflare/circl v1.3.7 // indirect
5355
github.com/davecgh/go-spew v1.1.1 // indirect
5456
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
5557
github.com/disgoorg/json v1.1.0 // indirect
56-
github.com/dlclark/regexp2 v1.10.0 // indirect
58+
github.com/dlclark/regexp2 v1.11.0 // indirect
5759
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
58-
github.com/gaukas/godicttls v0.0.4 // indirect
5960
github.com/gin-contrib/sse v0.1.0 // indirect
60-
github.com/go-openapi/inflect v0.19.0 // indirect
61+
github.com/go-openapi/inflect v0.21.0 // indirect
6162
github.com/go-playground/locales v0.14.1 // indirect
6263
github.com/go-playground/universal-translator v0.18.1 // indirect
63-
github.com/go-playground/validator/v10 v10.16.0 // indirect
64+
github.com/go-playground/validator/v10 v10.19.0 // indirect
6465
github.com/go-shiori/dom v0.0.0-20230515143342-73569d674e1c // indirect
6566
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
6667
github.com/goccy/go-json v0.10.2 // indirect
6768
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f // indirect
6869
github.com/google/go-cmp v0.6.0 // indirect
69-
github.com/google/pprof v0.0.0-20231205033806-a5a03c77bf08 // indirect
70+
github.com/google/pprof v0.0.0-20240227163752-401108e1b7e7 // indirect
7071
github.com/gorilla/websocket v1.5.1 // indirect
7172
github.com/hashicorp/errwrap v1.1.0 // indirect
7273
github.com/hashicorp/go-multierror v1.1.1 // indirect
73-
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
74+
github.com/hashicorp/hcl/v2 v2.20.0 // indirect
7475
github.com/json-iterator/go v1.1.12 // indirect
75-
github.com/klauspost/compress v1.17.4 // indirect
76-
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
77-
github.com/leodido/go-urn v1.2.4 // indirect
76+
github.com/klauspost/compress v1.17.7 // indirect
77+
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
78+
github.com/leodido/go-urn v1.4.0 // indirect
7879
github.com/mattn/go-isatty v0.0.20 // indirect
7980
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
8081
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8182
github.com/modern-go/reflect2 v1.0.2 // indirect
82-
github.com/onsi/ginkgo/v2 v2.13.2 // indirect
83-
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
83+
github.com/onsi/ginkgo/v2 v2.16.0 // indirect
84+
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
8485
github.com/pmezard/go-difflib v1.0.0 // indirect
8586
github.com/quic-go/qpack v0.4.0 // indirect
86-
github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
87-
github.com/quic-go/quic-go v0.40.0 // indirect
88-
github.com/redis/go-redis/v9 v9.3.0 // indirect
89-
github.com/refraction-networking/utls v1.5.4 // indirect
87+
github.com/quic-go/quic-go v0.41.0 // indirect
88+
github.com/redis/go-redis/v9 v9.5.1 // indirect
89+
github.com/refraction-networking/utls v1.6.3 // indirect
9090
github.com/samber/mo v1.11.0 // indirect
91-
github.com/sasha-s/go-csync v0.0.0-20210812194225-61421b77c44b // indirect
91+
github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad // indirect
9292
github.com/shopspring/decimal v1.3.1 // indirect
9393
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
9494
github.com/ugorji/go/codec v1.2.12 // indirect
9595
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
96-
github.com/zclconf/go-cty v1.14.1 // indirect
96+
github.com/zclconf/go-cty v1.14.3 // indirect
9797
go.uber.org/atomic v1.11.0 // indirect
9898
go.uber.org/dig v1.17.1 // indirect
99-
go.uber.org/goleak v1.2.1 // indirect
100-
go.uber.org/mock v0.3.0 // indirect
101-
golang.org/x/arch v0.6.0 // indirect
102-
golang.org/x/crypto v0.16.0 // indirect
103-
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect
104-
golang.org/x/mod v0.14.0 // indirect
105-
golang.org/x/net v0.19.0 // indirect
106-
golang.org/x/sys v0.15.0 // indirect
107-
golang.org/x/tools v0.16.0 // indirect
108-
google.golang.org/protobuf v1.31.0 // indirect
99+
go.uber.org/mock v0.4.0 // indirect
100+
golang.org/x/arch v0.7.0 // indirect
101+
golang.org/x/crypto v0.21.0 // indirect
102+
golang.org/x/exp v0.0.0-20240314144324-c7f7c6466f7f // indirect
103+
golang.org/x/mod v0.16.0 // indirect
104+
golang.org/x/net v0.22.0 // indirect
105+
golang.org/x/sys v0.18.0 // indirect
106+
golang.org/x/tools v0.19.0 // indirect
107+
google.golang.org/protobuf v1.33.0 // indirect
109108
)

0 commit comments

Comments
 (0)