Skip to content

Commit 9102f21

Browse files
bugerclaudeilijabojanovic
authored
fix: align plugin compiler Go version with gateway (1.25) (#8040)
## Summary - The gateway goreleaser uses `golang-cross:1.25-bullseye` but the plugin compiler was still on `1.24-bullseye` - This causes `plugin.Open` failures due to Go version mismatch (`internal/goarch`) - Updated both `plugin-compiler-build.yml` and the plugin compiler `Dockerfile` to use `1.25-bullseye` ## Test plan - [ ] Verify plugin compiler CI builds successfully with the new Go version - [ ] Build a test plugin and confirm `plugin.Open` works against a gateway built with 1.25 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Ilija Bojanovic <ilijabojanovic@gmail.com>
1 parent 81415fd commit 9102f21

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/plugin-compiler-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- "v*"
1212

1313
env:
14-
GOLANG_CROSS: 1.24-bullseye
14+
GOLANG_CROSS: 1.25-bullseye
1515

1616
concurrency:
1717
group: ${{ github.workflow }}-${{ github.ref }}

ci/images/plugin-compiler/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE=tykio/golang-cross:1.24-bullseye
1+
ARG BASE_IMAGE=tykio/golang-cross:1.25-bullseye
22
FROM ${BASE_IMAGE}
33

44
LABEL description="Image for plugin development"

0 commit comments

Comments
 (0)