Skip to content

Commit c9051e0

Browse files
chore(deps): Update go minor and patch (#462)
1 parent 145ff18 commit c9051e0

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

.github/workflows/ci-ristretto-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
with:
2828
go-version-file: go.mod
2929
- name: Run Unit Tests
30-
run: go test -timeout=20m -race -covermode atomic -coverprofile=covprofile ./...
30+
run: |
31+
go env -w GOTOOLCHAIN=go1.25.0+auto
32+
go test -timeout=20m -race -covermode atomic -coverprofile=covprofile ./...
3133
- name: Save coverage profile
3234
uses: actions/upload-artifact@v4
3335
with:

.trunk/trunk.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
version: 0.1
44

55
cli:
6-
version: 1.24.0
6+
version: 1.25.0
77

88
# Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
99
plugins:
1010
sources:
1111
- id: trunk
12-
ref: v1.7.0
12+
ref: v1.7.1
1313
uri: https://github.com/trunk-io/plugins
1414

1515
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
@@ -22,18 +22,18 @@ runtimes:
2222
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
2323
lint:
2424
enabled:
25-
- golangci-lint2@2.1.6
26-
- trivy@0.63.0
27-
- renovate@40.57.1
25+
- golangci-lint2@2.4.0
26+
- trivy@0.64.1
27+
- renovate@41.76.0
2828
29-
29+
3030
- git-diff-check
3131
3232
3333
34-
- prettier@3.5.3
35-
- svgo@3.3.2
36-
- trufflehog@3.89.1
34+
- prettier@3.6.2
35+
- svgo@4.0.0
36+
- trufflehog@3.90.5
3737
3838
actions:
3939
enabled:

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ module github.com/dgraph-io/ristretto/v2
22

33
go 1.23.0
44

5-
toolchain go1.24.5
5+
toolchain go1.25.0
66

77
require (
88
github.com/cespare/xxhash/v2 v2.3.0
99
github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da
1010
github.com/dustin/go-humanize v1.0.1
1111
github.com/stretchr/testify v1.10.0
12-
golang.org/x/sys v0.34.0
12+
golang.org/x/sys v0.35.0
1313
)
1414

1515
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
1010
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1111
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
1212
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
13-
golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA=
14-
golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
13+
golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
14+
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
1515
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
1616
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1717
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

0 commit comments

Comments
 (0)