File tree Expand file tree Collapse file tree 3 files changed +11
-18
lines changed
Expand file tree Collapse file tree 3 files changed +11
-18
lines changed Original file line number Diff line number Diff line change 1313 os : [macos, windows, ubuntu]
1414 runs-on : ${{ matrix.os }}-latest
1515 steps :
16- - uses : actions/checkout@v4
17- - uses : actions/setup-go@v5
16+ - uses : actions/checkout@v6
17+ - uses : actions/setup-go@v6
1818 with :
1919 go-version : stable
2020 - name : go-test
@@ -29,12 +29,12 @@ jobs:
2929 env :
3030 GOOS : ${{ matrix.os }}
3131 steps :
32- - uses : actions/setup-go@v5
32+ - uses : actions/setup-go@v6
3333 with :
3434 go-version : stable
35- - uses : actions/checkout@v4
35+ - uses : actions/checkout@v6
3636 - name : golangci-lint
37- uses : golangci/golangci-lint-action@v6
37+ uses : golangci/golangci-lint-action@v9
3838 with :
3939 version : v2.9
4040 # Runs golangci-lint on linux against linux and windows.
@@ -47,11 +47,11 @@ jobs:
4747 env :
4848 GOOS : ${{ matrix.os }}
4949 steps :
50- - uses : actions/setup-go@v5
50+ - uses : actions/setup-go@v6
5151 with :
5252 go-version : stable
53- - uses : actions/checkout@v4
53+ - uses : actions/checkout@v6
5454 - name : golangci-lint
55- uses : golangci/golangci-lint-action@v6
55+ uses : golangci/golangci-lint-action@v9
5656 with :
5757 version : v2.9
Original file line number Diff line number Diff line change 55toolchain go1.26.0
66
77// for tests.
8- require github.com/stretchr/testify v1.9.0
8+ require github.com/stretchr/testify v1.11.1
99
1010// testify imports these.
1111require (
Original file line number Diff line number Diff line change 1- github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
21github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
32github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
43github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
54github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
6- github.com/stretchr/objx v0.1.0 /go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME =
7- github.com/stretchr/objx v0.4.0 /go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw =
8- github.com/stretchr/objx v0.5.0 /go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo =
9- github.com/stretchr/testify v1.7.1 /go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg =
10- github.com/stretchr/testify v1.8.0 /go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU =
11- github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk =
12- github.com/stretchr/testify v1.8.4 /go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo =
135github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg =
146github.com/stretchr/testify v1.9.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
7+ github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U =
8+ github.com/stretchr/testify v1.11.1 /go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U =
159gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
1610gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
17- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
1811gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
1912gopkg.in/yaml.v3 v3.0.1 /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
You can’t perform that action at this time.
0 commit comments