File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 17
17
- uses : actions/checkout@v4
18
18
- uses : actions/setup-go@v5
19
19
with :
20
- go-version-file : ./go.mod
20
+ # HACK(mafredri): The exampels and thirdparty library require Go 1.24
21
+ # due to `golang.org/x/crypto` import, so lint tools must be built by
22
+ # the highest version of Go used.
23
+ go-version-file : ./internal/thirdparty/go.mod
21
24
- run : make fmt
22
25
23
26
lint :
27
30
- run : go version
28
31
- uses : actions/setup-go@v5
29
32
with :
30
- go-version-file : ./go.mod
33
+ # HACK(mafredri): The exampels and thirdparty library require Go 1.24
34
+ # due to `golang.org/x/crypto` import, so lint tools must be built by
35
+ # the highest version of Go used.
36
+ go-version-file : ./internal/thirdparty/go.mod
31
37
- run : make lint
32
38
33
39
test :
Original file line number Diff line number Diff line change 1
1
module github.com/coder/websocket
2
2
3
- go 1.24.7
3
+ go 1.23.12
You can’t perform that action at this time.
0 commit comments