Skip to content

Commit 35f6fd3

Browse files
authored
update dependencies (#164)
* update dependencies * use version from mod file * update existing go version
1 parent 2b3279f commit 35f6fd3

File tree

3 files changed

+62
-1115
lines changed

3 files changed

+62
-1115
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
go-version: [ 1.20.x ]
13+
go-version: [ 1.23.x ]
1414
os: [ ubuntu-latest ]
1515

1616
name: Checking

go.mod

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,38 @@
11
module github.com/ostafen/clover/v2
22

3-
go 1.13
3+
go 1.23
4+
5+
toolchain go1.23.6
46

57
require (
6-
github.com/brianvoe/gofakeit/v6 v6.23.2
7-
github.com/dgraph-io/badger/v4 v4.2.0
8-
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
9-
github.com/dustin/go-humanize v1.0.1 // indirect
10-
github.com/gofrs/uuid/v5 v5.0.0
11-
github.com/golang/glog v1.1.2 // indirect
12-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
13-
github.com/golang/protobuf v1.5.3 // indirect
14-
github.com/golang/snappy v0.0.4 // indirect
15-
github.com/google/flatbuffers v23.5.26+incompatible // indirect
8+
github.com/brianvoe/gofakeit/v6 v6.28.0
9+
github.com/dgraph-io/badger/v4 v4.5.1
10+
github.com/gofrs/uuid/v5 v5.3.1
1611
github.com/google/orderedcode v0.0.1
17-
github.com/klauspost/compress v1.17.0 // indirect
12+
github.com/stretchr/testify v1.10.0
13+
github.com/vmihailenco/msgpack/v5 v5.4.1
14+
go.etcd.io/bbolt v1.3.11
15+
)
16+
17+
require (
18+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
19+
github.com/davecgh/go-spew v1.1.1 // indirect
20+
github.com/dgraph-io/ristretto/v2 v2.1.0 // indirect
21+
github.com/dustin/go-humanize v1.0.1 // indirect
22+
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
23+
github.com/google/flatbuffers v25.1.24+incompatible // indirect
24+
github.com/google/go-cmp v0.6.0 // indirect
25+
github.com/klauspost/compress v1.17.11 // indirect
1826
github.com/kr/pretty v0.3.1 // indirect
27+
github.com/pkg/errors v0.9.1 // indirect
28+
github.com/pmezard/go-difflib v1.0.0 // indirect
1929
github.com/rogpeppe/go-internal v1.11.0 // indirect
20-
github.com/stretchr/testify v1.8.4
21-
github.com/vmihailenco/msgpack/v5 v5.3.5
22-
go.etcd.io/bbolt v1.3.7
23-
golang.org/x/net v0.15.0 // indirect
24-
google.golang.org/protobuf v1.31.0 // indirect
30+
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
31+
go.opencensus.io v0.24.0 // indirect
32+
golang.org/x/net v0.35.0 // indirect
33+
golang.org/x/sync v0.11.0 // indirect
34+
golang.org/x/sys v0.30.0 // indirect
35+
google.golang.org/protobuf v1.36.5 // indirect
2536
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
37+
gopkg.in/yaml.v3 v3.0.1 // indirect
2638
)

0 commit comments

Comments
 (0)