Skip to content

Commit d4395d3

Browse files
committed
chore: bump dependencies and Go version
1 parent 0ee262b commit d4395d3

File tree

4 files changed

+349
-263
lines changed

4 files changed

+349
-263
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v2
1818
- uses: actions/setup-go@v2
1919
with:
20-
go-version: '^1.16.0'
20+
go-version: '^1.19.0'
2121
- name: golangci-lint
2222
uses: golangci/golangci-lint-action@v2
2323
- run: make tools

go.mod

Lines changed: 34 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,40 @@
11
module github.com/ory/jsonschema/v3
22

3-
go 1.16
3+
go 1.19
44

5-
replace github.com/oleiade/reflections => github.com/oleiade/reflections v1.0.1
5+
require (
6+
github.com/hashicorp/go-retryablehttp v0.7.2
7+
github.com/jandelgado/gcov2lcov v1.0.5
8+
github.com/nyaruka/phonenumbers v1.1.6
9+
github.com/ory/go-acc v0.2.9-0.20230103102148-6b1c9a70dbbe
10+
github.com/stretchr/testify v1.8.1
11+
golang.org/x/tools v0.7.0
12+
)
613

714
require (
8-
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869
9-
github.com/dgraph-io/ristretto v0.0.3 // indirect
10-
github.com/golang/protobuf v1.4.3 // indirect
11-
github.com/google/go-cmp v0.5.5 // indirect
12-
github.com/google/uuid v1.2.0 // indirect
13-
github.com/hashicorp/go-retryablehttp v0.6.8
14-
github.com/jandelgado/gcov2lcov v1.0.4
15-
github.com/kr/text v0.2.0 // indirect
16-
github.com/magiconair/properties v1.8.4 // indirect
17-
github.com/mitchellh/mapstructure v1.4.1 // indirect
18-
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
19-
github.com/nyaruka/phonenumbers v1.0.73
20-
github.com/ory/go-acc v0.2.6
21-
github.com/pborman/uuid v1.2.1 // indirect
22-
github.com/pelletier/go-toml v1.8.1 // indirect
23-
github.com/spf13/afero v1.5.1 // indirect
24-
github.com/spf13/cast v1.3.2-0.20200723214538-8d17101741c8 // indirect
25-
github.com/spf13/cobra v1.1.3 // indirect
26-
github.com/stretchr/testify v1.7.0
27-
golang.org/x/mod v0.4.2 // indirect
28-
golang.org/x/sys v0.0.0-20210309074719-68d13333faf2 // indirect
29-
golang.org/x/tools v0.1.0
30-
google.golang.org/protobuf v1.25.0 // indirect
31-
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
32-
gopkg.in/ini.v1 v1.62.0 // indirect
33-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
15+
github.com/davecgh/go-spew v1.1.1 // indirect
16+
github.com/fsnotify/fsnotify v1.6.0 // indirect
17+
github.com/golang/protobuf v1.5.3 // indirect
18+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
19+
github.com/hashicorp/hcl v1.0.0 // indirect
20+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
21+
github.com/magiconair/properties v1.8.7 // indirect
22+
github.com/mitchellh/mapstructure v1.5.0 // indirect
23+
github.com/pelletier/go-toml v1.9.5 // indirect
24+
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
25+
github.com/pmezard/go-difflib v1.0.0 // indirect
26+
github.com/spf13/afero v1.9.5 // indirect
27+
github.com/spf13/cast v1.5.0 // indirect
28+
github.com/spf13/cobra v1.6.1 // indirect
29+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
30+
github.com/spf13/pflag v1.0.5 // indirect
31+
github.com/spf13/viper v1.14.0 // indirect
32+
github.com/subosito/gotenv v1.4.2 // indirect
33+
golang.org/x/mod v0.9.0 // indirect
34+
golang.org/x/sys v0.6.0 // indirect
35+
golang.org/x/text v0.5.0 // indirect
36+
google.golang.org/protobuf v1.30.0 // indirect
37+
gopkg.in/ini.v1 v1.67.0 // indirect
38+
gopkg.in/yaml.v2 v2.4.0 // indirect
39+
gopkg.in/yaml.v3 v3.0.1 // indirect
3440
)

0 commit comments

Comments
 (0)