Skip to content

Commit 4ce2c87

Browse files
stubbiclaude
andcommitted
ci(conformance): use go-version-file: go.mod to track project Go
Conformance jobs were pinned to Go 1.24, but PR #17 bumped go.mod to require Go 1.26 (controller-runtime v0.24). All five conformance jobs failed with: "go.mod requires go >= 1.26.0 (running go 1.24)". Match what ci.yaml does: read the version from go.mod so the workflow tracks future bumps automatically. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 4fe0bc4 commit 4ce2c87

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/conformance.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v6
2222
- uses: actions/setup-go@v6
23-
with: { go-version: "1.24" }
23+
with: { go-version-file: go.mod }
2424
- uses: helm/kind-action@v1
2525
with:
2626
cluster_name: hermes-conformance
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
- uses: actions/checkout@v6
4747
- uses: actions/setup-go@v6
48-
with: { go-version: "1.24" }
48+
with: { go-version-file: go.mod }
4949
- uses: helm/kind-action@v1
5050
with:
5151
cluster_name: hermes-conformance
@@ -70,7 +70,7 @@ jobs:
7070
steps:
7171
- uses: actions/checkout@v6
7272
- uses: actions/setup-go@v6
73-
with: { go-version: "1.24" }
73+
with: { go-version-file: go.mod }
7474
- uses: azure/setup-helm@v5
7575
- env:
7676
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -83,7 +83,7 @@ jobs:
8383
steps:
8484
- uses: actions/checkout@v6
8585
- uses: actions/setup-go@v6
86-
with: { go-version: "1.24" }
86+
with: { go-version-file: go.mod }
8787
- uses: helm/kind-action@v1
8888
with:
8989
cluster_name: hermes-conformance
@@ -108,7 +108,7 @@ jobs:
108108
steps:
109109
- uses: actions/checkout@v6
110110
- uses: actions/setup-go@v6
111-
with: { go-version: "1.24" }
111+
with: { go-version-file: go.mod }
112112
- uses: helm/kind-action@v1
113113
with:
114114
cluster_name: hermes-conformance

0 commit comments

Comments
 (0)