Skip to content

Commit e2a66b5

Browse files
committed
go up
1 parent 8eb686a commit e2a66b5

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v2
1919
with:
20-
go-version: '1.16.2'
20+
go-version: '1.17'
2121

2222
- name: Run GoReleaser
2323
uses: goreleaser/goreleaser-action@v2

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16-alpine AS gmc_builder
1+
FROM golang:1.17-alpine AS gmc_builder
22

33
RUN go env -w GO111MODULE=auto \
44
&& go env -w CGO_ENABLED=0 \

go.mod

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/ProtobufBot/Go-Mirai-Client
22

3-
go 1.16
3+
go 1.17
44

55
require (
6-
github.com/Mrs4s/MiraiGo v0.0.0-20210813074820-b8399fa706dc
6+
github.com/Mrs4s/MiraiGo v0.0.0-20210819142722-38916542a3eb
77
github.com/fanliao/go-promise v0.0.0-20141029170127-1890db352a72
88
github.com/gin-gonic/gin v1.7.2
99
github.com/go-playground/validator/v10 v10.8.0 // indirect
@@ -21,12 +21,24 @@ require (
2121
github.com/sirupsen/logrus v1.8.1
2222
github.com/smartystreets/goconvey v1.6.4 // indirect
2323
github.com/t-tomalak/logrus-easy-formatter v0.0.0-20190827215021-c074f06c5816
24-
github.com/ugorji/go v1.2.6 // indirect
2524
github.com/zserge/lorca v0.1.10
2625
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985 // indirect
2726
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2827
google.golang.org/protobuf v1.27.1 // indirect
2928
gopkg.in/yaml.v2 v2.4.0 // indirect
3029
)
3130

31+
require (
32+
github.com/gin-contrib/sse v0.1.0 // indirect
33+
github.com/go-playground/locales v0.13.0 // indirect
34+
github.com/go-playground/universal-translator v0.17.0 // indirect
35+
github.com/leodido/go-urn v1.2.1 // indirect
36+
github.com/modern-go/reflect2 v1.0.1 // indirect
37+
github.com/ugorji/go/codec v1.2.6 // indirect
38+
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
39+
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
40+
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
41+
golang.org/x/text v0.3.6 // indirect
42+
)
43+
3244
//replace github.com/Mrs4s/MiraiGo => ../../Mrs4s/MiraiGo

go.sum

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
22
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
3-
github.com/Mrs4s/MiraiGo v0.0.0-20210803073620-cb396f0f5649 h1:9aEo50MD/QMHExoBxeUu/oLrs8gKzuyKWZ2+t+8AaOQ=
4-
github.com/Mrs4s/MiraiGo v0.0.0-20210803073620-cb396f0f5649/go.mod h1:5V3f/+mTYtrI/+hLqbdzZQXuLMl2RyLfx0XYYjCQ90Q=
5-
github.com/Mrs4s/MiraiGo v0.0.0-20210813074820-b8399fa706dc h1:Gsk2ZnK0ojMA+R3mpKGyca17QM32xKrljxs24OCMGKw=
6-
github.com/Mrs4s/MiraiGo v0.0.0-20210813074820-b8399fa706dc/go.mod h1:oHKHGi6E7orFWiFZMvczvfGzwsdA2vPFzUmwKOaYX7Y=
3+
github.com/Mrs4s/MiraiGo v0.0.0-20210819142722-38916542a3eb h1:ipx9X3yuELYxfvdyq9uBxiY34vJmg9GawzZ7kmz6gic=
4+
github.com/Mrs4s/MiraiGo v0.0.0-20210819142722-38916542a3eb/go.mod h1:oHKHGi6E7orFWiFZMvczvfGzwsdA2vPFzUmwKOaYX7Y=
75
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
86
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
97
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

0 commit comments

Comments
 (0)