Skip to content

Commit c7c38ea

Browse files
myitcvcueckoo
authored andcommitted
internal/ci: use the latest stable version of Go
Now that we have "moved past" a previous minimum requirement of go1.22.x Using the latest stable version reflects the end user usage pattern we would expect for cue-api-java. Signed-off-by: Paul Jolly <[email protected]> Change-Id: I00a2766f49b9bd1277e609249d585dd806ec59d0 Dispatch-Trailer: {"type":"trybot","CL":1216795,"patchset":1,"ref":"refs/changes/95/1216795/1","targetBranch":"main"}
1 parent 37c6871 commit c7c38ea

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/trybot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
go-version:
20-
- 1.22.x
20+
- stable
2121
runner:
2222
- ubuntu-22.04
2323
- macos-14

internal/ci/github/trybot.cue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ workflows: trybot: _repo.bashWorkflow & {
8080
_testStrategy: {
8181
"fail-fast": false
8282
matrix: {
83-
"go-version": [_repo.latestStableGo]
83+
"go-version": ["stable"]
8484

8585
// TODO: Windows is missing because of issue #3016.
8686
runner: [_repo.linuxMachine, _repo.macosMachine]

internal/ci/repo/repo.cue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,3 @@ defaultBranch: "main"
1919
linuxMachine: "ubuntu-22.04"
2020
macosMachine: "macos-14"
2121
windowsMachine: "windows-2022"
22-
23-
// libcue requires Go 1.22+, so we can't test on any earlier version.
24-
latestStableGo: "1.22.x"

0 commit comments

Comments
 (0)