Skip to content

Commit 652ec3b

Browse files
committed
trunk upgrade and fix workflow
1 parent 35abf72 commit 652ec3b

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
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:

0 commit comments

Comments
 (0)