Skip to content

Commit 051f611

Browse files
authored
update go mod (#1015)
* update go mod * update static check go version
1 parent 5a6d70e commit 051f611

File tree

3 files changed

+79
-73
lines changed

3 files changed

+79
-73
lines changed

.github/workflows/go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
- name: Install Go
127127
uses: actions/setup-go@v5
128128
with:
129-
go-version: '1.x'
129+
go-version: '1.24'
130130
id: go
131131

132132
- name: Install required static analysis tools

go.mod

+21-22
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,48 @@
11
module github.com/openconfig/ygot
22

3-
go 1.21
3+
go 1.23.4
44

5-
toolchain go1.22.4
5+
toolchain go1.24.0
66

77
require (
8-
github.com/derekparker/trie v0.0.0-20221221181808-1424fce0c981
8+
github.com/derekparker/trie v0.0.0-20230829180723-39f4de51ef7d
99
github.com/golang/glog v1.2.4
1010
github.com/golang/protobuf v1.5.4
1111
github.com/google/go-cmp v0.6.0
1212
github.com/kr/pretty v0.3.1
1313
github.com/kylelemons/godebug v1.1.0
14-
github.com/openconfig/gnmi v0.11.0
14+
github.com/openconfig/gnmi v0.13.0
1515
github.com/openconfig/goyang v1.6.0
1616
github.com/openconfig/gribi v1.0.0
1717
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
18-
github.com/spf13/cobra v1.8.0
18+
github.com/spf13/cobra v1.9.1
1919
github.com/spf13/viper v1.19.0
20-
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
21-
google.golang.org/grpc v1.65.0
22-
google.golang.org/protobuf v1.34.1
20+
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa
21+
google.golang.org/grpc v1.70.0
22+
google.golang.org/protobuf v1.36.5
2323
)
2424

2525
require (
26-
github.com/fsnotify/fsnotify v1.7.0 // indirect
26+
github.com/fsnotify/fsnotify v1.8.0 // indirect
2727
github.com/hashicorp/hcl v1.0.0 // indirect
2828
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2929
github.com/kr/text v0.2.0 // indirect
30-
github.com/magiconair/properties v1.8.7 // indirect
30+
github.com/magiconair/properties v1.8.9 // indirect
3131
github.com/mitchellh/mapstructure v1.5.0 // indirect
32-
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
33-
github.com/rogpeppe/go-internal v1.9.0 // indirect
34-
github.com/sagikazarmark/locafero v0.4.0 // indirect
32+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
33+
github.com/rogpeppe/go-internal v1.13.1 // indirect
34+
github.com/sagikazarmark/locafero v0.7.0 // indirect
3535
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
3636
github.com/sourcegraph/conc v0.3.0 // indirect
37-
github.com/spf13/afero v1.11.0 // indirect
38-
github.com/spf13/cast v1.6.0 // indirect
39-
github.com/spf13/pflag v1.0.5 // indirect
37+
github.com/spf13/afero v1.12.0 // indirect
38+
github.com/spf13/cast v1.7.1 // indirect
39+
github.com/spf13/pflag v1.0.6 // indirect
4040
github.com/subosito/gotenv v1.6.0 // indirect
41-
go.uber.org/atomic v1.9.0 // indirect
42-
go.uber.org/multierr v1.9.0 // indirect
43-
golang.org/x/net v0.33.0 // indirect
44-
golang.org/x/sys v0.28.0 // indirect
45-
golang.org/x/text v0.21.0 // indirect
46-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
41+
go.uber.org/multierr v1.11.0 // indirect
42+
golang.org/x/net v0.35.0 // indirect
43+
golang.org/x/sys v0.30.0 // indirect
44+
golang.org/x/text v0.22.0 // indirect
45+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
4746
gopkg.in/ini.v1 v1.67.0 // indirect
4847
gopkg.in/yaml.v3 v3.0.1 // indirect
4948
)

0 commit comments

Comments
 (0)