Skip to content

Commit aeddc54

Browse files
committed
update go1.23
1 parent e0bef4c commit aeddc54

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/go.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,30 @@ jobs:
1818
gobuild:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/setup-go@v3
21+
- uses: actions/setup-go@v5
2222
with:
23-
go-version: 1.21
24-
- uses: actions/checkout@v3
23+
go-version: 1.23
24+
- uses: actions/checkout@v4
2525
- name: go build
2626
run: go build -v ./...
2727

2828
gotest:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/setup-go@v3
31+
- uses: actions/setup-go@v5
3232
with:
33-
go-version: 1.21
34-
- uses: actions/checkout@v3
33+
go-version: 1.23
34+
- uses: actions/checkout@v4
3535
- name: go build
3636
run: go test -v ./...
3737

3838
golangci:
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/setup-go@v3
41+
- uses: actions/setup-go@v5
4242
with:
43-
go-version: 1.21
44-
- uses: actions/checkout@v3
43+
go-version: 1.23
44+
- uses: actions/checkout@v4
4545
- name: golangci-lint
4646
uses: golangci/golangci-lint-action@v3
4747
with:

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
module github.com/disgoorg/disgo
22

3-
go 1.21
3+
go 1.23
44

55
require (
66
github.com/disgoorg/json v1.2.0
77
github.com/disgoorg/snowflake/v2 v2.0.3
88
github.com/gorilla/websocket v1.5.3
99
github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad
1010
github.com/stretchr/testify v1.9.0
11-
golang.org/x/crypto v0.27.0
11+
golang.org/x/crypto v0.28.0
1212
)
1313

1414
require (
1515
github.com/davecgh/go-spew v1.1.1 // indirect
1616
github.com/pmezard/go-difflib v1.0.0 // indirect
17-
golang.org/x/sys v0.25.0 // indirect
17+
golang.org/x/sys v0.26.0 // indirect
1818
gopkg.in/yaml.v3 v3.0.1 // indirect
1919
)

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad h1:qIQkSlF5vAUHxE
1212
github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad/go.mod h1:/pA7k3zsXKdjjAiUhB5CjuKib9KJGCaLvZwtxGC8U0s=
1313
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
1414
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
15-
golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A=
16-
golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70=
17-
golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34=
18-
golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
15+
golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw=
16+
golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U=
17+
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
18+
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
1919
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
2020
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
2121
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

0 commit comments

Comments
 (0)