Skip to content

Commit a3957ec

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

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/ci.yml

+1-1
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

+2-2
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

+1-1
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

+1-1
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

internal/thirdparty/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module nhooyr.io/websocket/internal/thirdparty
22

3-
go 1.19
3+
go 1.21
44

55
replace nhooyr.io/websocket => ../..
66

internal/thirdparty/go.sum

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm
1414
github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg=
1515
github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU=
1616
github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s=
17+
github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
1718
github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA=
1819
github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY=
1920
github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY=

0 commit comments

Comments
 (0)