Skip to content

Commit 50adccf

Browse files
SecAI-Hubclaude
andcommitted
Fix CI: update setup-go version 1.23→1.25 to match go.mod
All 6 setup-go steps (5 in ci.yml, 1 in release.yml) were still pinned to go-version: "1.23" while go.mod was updated to go 1.25. This caused all Go jobs to fail with: go: go.mod requires go >= 1.25 (running go 1.23.12; GOTOOLCHAIN=local) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7ab73ae commit 50adccf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
2929
with:
30-
go-version: "1.23"
30+
go-version: "1.25"
3131
cache-dependency-path: services/${{ matrix.service }}/go.sum
3232

3333
- name: Build
@@ -183,7 +183,7 @@ jobs:
183183
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
184184
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
185185
with:
186-
go-version: "1.23"
186+
go-version: "1.25"
187187

188188
- name: Install Syft (SBOM generator)
189189
run: curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin
@@ -255,7 +255,7 @@ jobs:
255255

256256
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
257257
with:
258-
go-version: "1.23"
258+
go-version: "1.25"
259259

260260
- name: Install Python dependencies
261261
run: pip install -r requirements-ci.txt
@@ -285,7 +285,7 @@ jobs:
285285

286286
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
287287
with:
288-
go-version: "1.23"
288+
go-version: "1.25"
289289

290290
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
291291
with:
@@ -307,7 +307,7 @@ jobs:
307307

308308
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
309309
with:
310-
go-version: "1.23"
310+
go-version: "1.25"
311311

312312
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
313313
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
3434
with:
35-
go-version: "1.23"
35+
go-version: "1.25"
3636
cache-dependency-path: services/${{ matrix.service }}/go.sum
3737

3838
- name: Build (linux/amd64)

0 commit comments

Comments
 (0)