Skip to content

Commit c9f1d67

Browse files
authored
Update all dependencies. (#156)
Signed-off-by: Youyuan Wu <youyuanwu@outlook.com>
1 parent 82e6077 commit c9f1d67

File tree

5 files changed

+89
-165
lines changed

5 files changed

+89
-165
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v2
1919
with:
20-
go-version: 1.17
20+
go-version: 1.18
2121

2222
- name: Setup gotestsum
2323
uses: autero1/action-gotestsum@v1.0.0

appveyor.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

fixtures/validation/fixture-1171.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,7 @@ paths:
5858
responses:
5959
'200':
6060
schema:
61-
# $ref may not have sibling
62-
properties:
63-
name: sibling
64-
$ref: '#/definitions/Zones'
61+
$ref: '#/definitions/Zones'
6562

6663
'/servers/{server_id}/zones/{zone_id}':
6764
get:

go.mod

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,27 @@ module github.com/go-openapi/validate
33
go 1.18
44

55
require (
6-
github.com/go-openapi/analysis v0.21.2
7-
github.com/go-openapi/errors v0.19.9
8-
github.com/go-openapi/jsonpointer v0.19.5
9-
github.com/go-openapi/loads v0.21.1
10-
github.com/go-openapi/spec v0.20.4
11-
github.com/go-openapi/strfmt v0.21.1
12-
github.com/go-openapi/swag v0.21.1
13-
github.com/stretchr/testify v1.7.0
6+
github.com/go-openapi/analysis v0.21.4
7+
github.com/go-openapi/errors v0.20.4
8+
github.com/go-openapi/jsonpointer v0.20.0
9+
github.com/go-openapi/loads v0.21.2
10+
github.com/go-openapi/spec v0.20.9
11+
github.com/go-openapi/strfmt v0.21.7
12+
github.com/go-openapi/swag v0.22.4
13+
github.com/stretchr/testify v1.8.4
1414
gopkg.in/yaml.v2 v2.4.0
1515
)
1616

1717
require (
18-
github.com/PuerkitoBio/purell v1.1.1 // indirect
19-
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
20-
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
18+
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
2119
github.com/davecgh/go-spew v1.1.1 // indirect
22-
github.com/go-openapi/jsonreference v0.19.6 // indirect
23-
github.com/go-stack/stack v1.8.0 // indirect
20+
github.com/go-openapi/jsonreference v0.20.2 // indirect
2421
github.com/josharian/intern v1.0.0 // indirect
25-
github.com/mailru/easyjson v0.7.6 // indirect
26-
github.com/mitchellh/mapstructure v1.4.1 // indirect
22+
github.com/mailru/easyjson v0.7.7 // indirect
23+
github.com/mitchellh/mapstructure v1.5.0 // indirect
2724
github.com/oklog/ulid v1.3.1 // indirect
2825
github.com/pmezard/go-difflib v1.0.0 // indirect
29-
go.mongodb.org/mongo-driver v1.7.5 // indirect
30-
golang.org/x/net v0.0.0-20210421230115-4e50805a0758 // indirect
31-
golang.org/x/text v0.3.7 // indirect
32-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
26+
github.com/rogpeppe/go-internal v1.11.0 // indirect
27+
go.mongodb.org/mongo-driver v1.12.0 // indirect
28+
gopkg.in/yaml.v3 v3.0.1 // indirect
3329
)

0 commit comments

Comments
 (0)