Skip to content

Commit 4dea8d5

Browse files
authored
Remove dependency on ginkgo v1.16.4 (#530)
1 parent 1a4e27f commit 4dea8d5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/setup-go@v2
1111
with:
12-
go-version: '1.17'
12+
go-version: '1.18'
1313
- uses: actions/checkout@v3
1414
- run: go mod tidy && git diff --exit-code go.mod go.sum
1515
build:

go.mod

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
module github.com/onsi/gomega
22

3-
go 1.16
3+
go 1.18
44

55
require (
66
github.com/golang/protobuf v1.5.2
77
github.com/onsi/ginkgo/v2 v2.0.0
88
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781
9-
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
109
gopkg.in/yaml.v2 v2.4.0
1110
)
11+
12+
require (
13+
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
14+
golang.org/x/text v0.3.6 // indirect
15+
google.golang.org/protobuf v1.26.0 // indirect
16+
)

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI
2828
github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU=
2929
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
3030
github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk=
31-
github.com/onsi/ginkgo v1.16.4 h1:29JGrr5oVBm5ulCWet69zQkzWipVXIol6ygQUe/EzNc=
3231
github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0=
3332
github.com/onsi/ginkgo/v2 v2.0.0 h1:CcuG/HvWNkkaqCUpJifQY8z7qEMBJya6aLPx6ftGyjQ=
3433
github.com/onsi/ginkgo/v2 v2.0.0/go.mod h1:vw5CSIxN1JObi/U8gcbwft7ZxR2dgaR70JSE3/PpL4c=

0 commit comments

Comments
 (0)