Skip to content

Commit 26e0279

Browse files
committed
ci: align actionlint Go toolchain
1 parent f598233 commit 26e0279

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
- uses: actions/setup-go@v7
2626
if: runner.os == 'Linux'
2727
with:
28-
go-version: 1.24.0
28+
go-version: 1.25.0
29+
cache: false
2930
- uses: oven-sh/setup-bun@v2
3031
with:
3132
bun-version: 1.3.14

tests/repository/test-release-workflow.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ go = next(step for step in matrix_steps if step.get("uses") == "actions/setup-go
112112
bun = next(step for step in matrix_steps if step.get("uses") == "oven-sh/setup-bun@v2")
113113
assert node["with"]["node-version"] == "22.12.0"
114114
assert go["if"] == "runner.os == 'Linux'"
115-
assert go["with"]["go-version"] == "1.24.0"
115+
assert go["with"]["go-version"] == "1.25.0"
116+
assert go["with"]["cache"] is False
116117
assert bun["with"]["bun-version"] == "1.3.14"
117118
codex = next(step for step in matrix_steps if step.get("name") == "Install current Codex CLI")
118119
assert codex["run"] == "npm install --global @openai/codex@latest"

0 commit comments

Comments
 (0)