Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Commit 74e41ba

Browse files
chore: misc dependency updates (#934)
1 parent 079aafe commit 74e41ba

File tree

34 files changed

+49
-51
lines changed

34 files changed

+49
-51
lines changed

.github/workflows/ci-go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Setup Go
5353
uses: actions/setup-go@v5
5454
with:
55-
go-version: 1.24.4
55+
go-version: 1.24.5
5656
cache-dependency-path: "${{ matrix.dir }}/go.sum"
5757
- name: Run Unit Tests
5858
run: |

.github/workflows/ci-runtime-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup Go
3434
uses: actions/setup-go@v5
3535
with:
36-
go-version: 1.24.4
36+
go-version: 1.24.5
3737
cache-dependency-path: runtime/go.sum
3838
- name: Build Runtime
3939
working-directory: runtime

.github/workflows/ci-runtime-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Go
2626
uses: actions/setup-go@v5
2727
with:
28-
go-version: 1.24.4
28+
go-version: 1.24.5
2929
cache-dependency-path: runtime/go.sum
3030
- name: Setup Node
3131
uses: actions/setup-node@v4

.github/workflows/ci-sdk-go-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Setup Go
5959
uses: actions/setup-go@v5
6060
with:
61-
go-version: 1.24.4
61+
go-version: 1.24.5
6262
cache-dependency-path: ./sdk/go/go.sum
6363
- name: Build Program
6464
run: go build .
@@ -79,11 +79,11 @@ jobs:
7979
- name: Setup Go
8080
uses: actions/setup-go@v5
8181
with:
82-
go-version: 1.24.4
82+
go-version: 1.24.5
8383
cache-dependency-path: "${{ matrix.dir }}/go.sum"
8484
- name: Setup TinyGo
8585
uses: acifani/setup-tinygo@v2
8686
with:
87-
tinygo-version: 0.36.0
87+
tinygo-version: 0.38.0
8888
- name: Build Program
8989
run: ./build.sh

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
if: matrix.language == 'go'
6868
uses: actions/setup-go@v5
6969
with:
70-
go-version: 1.24.4
70+
go-version: 1.24.5
7171
cache-dependency-path: runtime/go.sum
7272

7373
# Initializes the CodeQL tools for scanning.

.github/workflows/release-runtime.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: npm run build
3333
- uses: actions/setup-go@v5
3434
with:
35-
go-version: 1.24.4
35+
go-version: 1.24.5
3636
cache-dependency-path: runtime/go.sum
3737
- uses: goreleaser/goreleaser-action@v6
3838
with:

.github/workflows/release-sdk-go.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Go
2727
uses: actions/setup-go@v5
2828
with:
29-
go-version: 1.24.4
29+
go-version: 1.24.5
3030
cache-dependency-path: ./sdk/go/go.sum
3131
- name: Prepare Release
3232
working-directory: sdk/go

.trunk/trunk.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ plugins:
1414
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
1515
runtimes:
1616
enabled:
17-
18-
- node@22.16.0
19-
- python@3.10.8
17+
18+
- node@22.17.0
19+
- python@3.13.3
2020

2121
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
2222
lint:
2323
enabled:
2424
25-
- trivy@0.63.0
26-
- renovate@41.10.0
25+
- trivy@0.64.1
26+
- renovate@41.27.0
2727
28-
28+
2929
- git-diff-check
3030
31-
- golangci-lint2@2.1.6
31+
- golangci-lint2@2.2.1
3232
3333
3434
35-
35+
3636
packages:
3737
3838

go.work

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.24.4
1+
go 1.24.5
22

33
use (
44
./lib/manifest
@@ -18,10 +18,10 @@ use (
1818
./sdk/go/examples/mysql
1919
./sdk/go/examples/neo4j
2020
./sdk/go/examples/postgresql
21+
./sdk/go/examples/secrets
2122
./sdk/go/examples/simple
2223
./sdk/go/examples/textgeneration
2324
./sdk/go/examples/time
2425
./sdk/go/examples/vectors
25-
./sdk/go/examples/secrets
2626
./sdk/go/templates/default
2727
)

lib/manifest/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/hypermodeinc/modus/lib/manifest
22

33
go 1.23.1
44

5-
toolchain go1.24.4
5+
toolchain go1.23.11
66

77
require (
88
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
@@ -13,5 +13,5 @@ require (
1313
require (
1414
github.com/tidwall/match v1.1.1 // indirect
1515
github.com/tidwall/pretty v1.2.1 // indirect
16-
golang.org/x/text v0.24.0 // indirect
16+
golang.org/x/text v0.26.0 // indirect
1717
)

0 commit comments

Comments
 (0)