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

Commit 8dca6e5

Browse files
chore: misc repository maintainance (#716)
1 parent 9a1b1e9 commit 8dca6e5

File tree

26 files changed

+33
-30
lines changed

26 files changed

+33
-30
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Go
5151
uses: actions/setup-go@v5
5252
with:
53-
go-version: 1.23.4
53+
go-version: 1.23.5
5454
cache-dependency-path: "${{ matrix.dir }}/go.sum"
5555
- name: Run Linter
5656
uses: golangci/golangci-lint-action@v6

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Go
5252
uses: actions/setup-go@v5
5353
with:
54-
go-version: 1.23.4
54+
go-version: 1.23.5
5555
cache-dependency-path: "${{ matrix.dir }}/go.sum"
5656
- name: Run Unit Tests
5757
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.23.4
36+
go-version: 1.23.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
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Go
2525
uses: actions/setup-go@v5
2626
with:
27-
go-version: 1.23.4
27+
go-version: 1.23.5
2828
cache-dependency-path: runtime/go.sum
2929
- name: Run Integration Tests
3030
working-directory: runtime

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Setup Go
5858
uses: actions/setup-go@v5
5959
with:
60-
go-version: 1.23.4
60+
go-version: 1.23.5
6161
cache-dependency-path: ./sdk/go/go.sum
6262
- name: Build Program
6363
run: go build .
@@ -78,7 +78,7 @@ jobs:
7878
- name: Setup Go
7979
uses: actions/setup-go@v5
8080
with:
81-
go-version: 1.23.4
81+
go-version: 1.23.5
8282
cache-dependency-path: "${{ matrix.dir }}/go.sum"
8383
- name: Setup TinyGo
8484
uses: acifani/setup-tinygo@v2

.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.23.4
70+
go-version: 1.23.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.23.4
35+
go-version: 1.23.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.23.4
29+
go-version: 1.23.5
3030
cache-dependency-path: ./sdk/go/go.sum
3131
- name: Prepare Release
3232
working-directory: sdk/go

.trunk/trunk.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
33
version: 0.1
44
cli:
5-
version: 1.22.8
5+
version: 1.22.9
66

77
# Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
88
plugins:
@@ -14,18 +14,19 @@ plugins:
1414
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
1515
runtimes:
1616
enabled:
17-
17+
1818
1919
2020

2121
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
2222
lint:
2323
enabled:
24-
25-
24+
25+
26+
2627
- git-diff-check
2728
28-
- golangci-lint@1.62.2
29+
- golangci-lint@1.63.4
2930
3031
3132
@@ -34,7 +35,7 @@ lint:
3435
3536
3637
37-
38+
3839
3940
actions:
4041
enabled:

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
go 1.23.1
22

3-
toolchain go1.23.4
3+
toolchain go1.23.5
44

55
use (
66
./lib/manifest

0 commit comments

Comments
 (0)