File tree 5 files changed +18
-24
lines changed
_examples/application_commands/http
5 files changed +18
-24
lines changed Original file line number Diff line number Diff line change 7
7
- ' **/go.mod'
8
8
- ' **/go.sum'
9
9
- ' .github/workflows/go.yml'
10
- pull_request_target :
11
- paths :
12
- - ' **/*.go'
13
- - ' **/go.mod'
14
- - ' **/go.sum'
15
- - ' .github/workflows/go.yml'
16
10
17
11
jobs :
18
12
build :
19
13
runs-on : ubuntu-latest
20
14
steps :
21
15
- uses : actions/setup-go@v5
22
16
with :
23
- go-version : 1.21
17
+ go-version : 1.24
24
18
- uses : actions/checkout@v4
25
19
- name : go build
26
20
run : go build -v ./...
30
24
steps :
31
25
- uses : actions/setup-go@v5
32
26
with :
33
- go-version : 1.21
27
+ go-version : 1.24
34
28
- uses : actions/checkout@v4
35
29
- name : go test
36
30
run : go test -v ./...
40
34
steps :
41
35
- uses : actions/setup-go@v5
42
36
with :
43
- go-version : 1.21
37
+ go-version : 1.24
44
38
- uses : actions/checkout@v4
45
39
- name : golangci-lint
46
40
uses : golangci/golangci-lint-action@v6
Original file line number Diff line number Diff line change 1
1
module github.com/disgoorg/disgo/_examples/application_commands/http
2
2
3
- go 1.21
3
+ go 1.24
4
4
5
5
replace github.com/disgoorg/disgo => ../../../
6
6
7
7
require (
8
- github.com/disgoorg/disgo v0.18.14
8
+ github.com/disgoorg/disgo v0.18.15
9
9
github.com/disgoorg/snowflake/v2 v2.0.3
10
10
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a
11
11
)
@@ -14,6 +14,6 @@ require (
14
14
github.com/disgoorg/json v1.2.0 // indirect
15
15
github.com/gorilla/websocket v1.5.3 // indirect
16
16
github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad // indirect
17
- golang.org/x/crypto v0.31 .0 // indirect
18
- golang.org/x/sys v0.28 .0 // indirect
17
+ golang.org/x/crypto v0.35 .0 // indirect
18
+ golang.org/x/sys v0.30 .0 // indirect
19
19
)
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad h1:qIQkSlF5vAUHxE
14
14
github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad /go.mod h1:/pA7k3zsXKdjjAiUhB5CjuKib9KJGCaLvZwtxGC8U0s =
15
15
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA =
16
16
github.com/stretchr/testify v1.10.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
17
- golang.org/x/crypto v0.31 .0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U =
18
- golang.org/x/crypto v0.31 .0 /go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk =
19
- golang.org/x/sys v0.28 .0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA =
20
- golang.org/x/sys v0.28 .0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
17
+ golang.org/x/crypto v0.35 .0 h1:b15kiHdrGCHrP6LvwaQ3c03kgNhhiMgvlhxHQhmg2Xs =
18
+ golang.org/x/crypto v0.35 .0 /go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0YQ =
19
+ golang.org/x/sys v0.30 .0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc =
20
+ golang.org/x/sys v0.30 .0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
21
21
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
22
22
gopkg.in/yaml.v3 v3.0.1 /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
Original file line number Diff line number Diff line change 1
1
module github.com/disgoorg/disgo
2
2
3
- go 1.21
3
+ go 1.24
4
4
5
5
require (
6
6
github.com/disgoorg/json v1.2.0
7
7
github.com/disgoorg/snowflake/v2 v2.0.3
8
8
github.com/gorilla/websocket v1.5.3
9
9
github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad
10
10
github.com/stretchr/testify v1.10.0
11
- golang.org/x/crypto v0.31 .0
11
+ golang.org/x/crypto v0.35 .0
12
12
)
13
13
14
14
require (
15
15
github.com/davecgh/go-spew v1.1.1 // indirect
16
16
github.com/pmezard/go-difflib v1.0.0 // indirect
17
- golang.org/x/sys v0.28 .0 // indirect
17
+ golang.org/x/sys v0.30 .0 // indirect
18
18
gopkg.in/yaml.v3 v3.0.1 // indirect
19
19
)
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad h1:qIQkSlF5vAUHxE
12
12
github.com/sasha-s/go-csync v0.0.0-20240107134140-fcbab37b09ad /go.mod h1:/pA7k3zsXKdjjAiUhB5CjuKib9KJGCaLvZwtxGC8U0s =
13
13
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA =
14
14
github.com/stretchr/testify v1.10.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
15
- golang.org/x/crypto v0.31 .0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U =
16
- golang.org/x/crypto v0.31 .0 /go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk =
17
- golang.org/x/sys v0.28 .0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA =
18
- golang.org/x/sys v0.28 .0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
15
+ golang.org/x/crypto v0.35 .0 h1:b15kiHdrGCHrP6LvwaQ3c03kgNhhiMgvlhxHQhmg2Xs =
16
+ golang.org/x/crypto v0.35 .0 /go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0YQ =
17
+ golang.org/x/sys v0.30 .0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc =
18
+ golang.org/x/sys v0.30 .0 /go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA =
19
19
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
20
20
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
21
21
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
You can’t perform that action at this time.
0 commit comments