Skip to content

Commit fd3f600

Browse files
committed
Bump actions/upload-artifact to latest version
1 parent bd07a64 commit fd3f600

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
go-version-file: ./go.mod
3434
- run: ./ci/test.sh
35-
- uses: actions/upload-artifact@v3
35+
- uses: actions/upload-artifact@v4
3636
with:
3737
name: coverage.html
3838
path: ./ci/out/coverage.html

.github/workflows/daily.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
go-version-file: ./go.mod
2626
- run: AUTOBAHN=1 ./ci/test.sh
27-
- uses: actions/upload-artifact@v3
27+
- uses: actions/upload-artifact@v4
2828
with:
2929
name: coverage.html
3030
path: ./ci/out/coverage.html
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
go-version-file: ./go.mod
5050
- run: AUTOBAHN=1 ./ci/test.sh
51-
- uses: actions/upload-artifact@v3
51+
- uses: actions/upload-artifact@v4
5252
with:
5353
name: coverage-dev.html
5454
path: ./ci/out/coverage.html

dial.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ func verifyServerExtensions(copts *compressionOptions, h http.Header) (*compress
273273

274274
ext := exts[0]
275275
if ext.name != "permessage-deflate" || len(exts) > 1 || copts == nil {
276-
return nil, fmt.Errorf("WebSocket protcol violation: unsupported extensions from server: %+v", exts[1:])
276+
return nil, fmt.Errorf("WebSocket protocol violation: unsupported extensions from server: %+v", exts[1:])
277277
}
278278

279279
_copts := *copts

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module nhooyr.io/websocket
22

3-
go 1.19
3+
go 1.21

0 commit comments

Comments
 (0)