Skip to content

Commit e66a4d4

Browse files
committed
chore: bump go version
1 parent 0a9ef13 commit e66a4d4

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
packages: write
1111

1212
env:
13-
GO_VERSION: '1.26.2'
13+
GO_VERSION: '1.26.4'
1414

1515
jobs:
1616
test:

Dockerfile.serena

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# copies the Go toolchain from the same golang image used by the project's
66
# build targets so the versions stay aligned.
77

8-
FROM golang:1.26.2-trixie AS go-toolchain
8+
FROM golang:1.26.4-trixie AS go-toolchain
99

1010
FROM ghcr.io/oraios/serena:latest
1111

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ help:
8888
@echo " uninstall Uninstall"
8989
@echo ""
9090
@echo "Docker Build:"
91-
@echo " build-docker Build using golang:1.26.2-trixie"
91+
@echo " build-docker Build using golang:1.26.4-trixie"
9292
@echo " build-all-docker Build all platforms using Docker"
9393
@echo " install-deps-docker Download dependencies using Docker"
9494
@echo " test-docker Run tests using Docker"
@@ -128,7 +128,7 @@ serena-health: ## Check Serena health
128128
# Docker Build Commands
129129
# ============================================
130130

131-
GO_IMAGE=golang:1.26.2-trixie
131+
GO_IMAGE=golang:1.26.4-trixie
132132

133133
build-docker:
134134
docker run --rm -it -v $$(pwd):/src $(GO_IMAGE) \

docs/serena-mcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Lilt is a single-module Go CLI project. Serena's gopls integration provides:
4040
Lilt uses a custom Serena image (`Dockerfile.serena`) because the stock `ghcr.io/oraios/serena:latest` image does not include the Go toolchain or `gopls`, both of which are required for Serena's Go language-server support. The custom image is built automatically by Docker Compose on first run:
4141

4242
```dockerfile
43-
FROM golang:1.26.2-trixie AS go-toolchain
43+
FROM golang:1.26.4-trixie AS go-toolchain
4444
FROM ghcr.io/oraios/serena:latest
4545

4646
COPY --from=go-toolchain /usr/local/go /usr/local/go

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/Ardakilic/lilt
22

3-
go 1.26.2
3+
go 1.26.4
44

55
require github.com/spf13/cobra v1.10.2
66

openspec/changes/archive/2026-06-14-fix-serena-mcp-setup/design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ However, the `Makefile` only lists the Serena targets in `help` and `.PHONY`; th
3838

3939
4. **Custom Serena image**
4040
- The stock `ghcr.io/oraios/serena:latest` image does not include Go or `gopls`, which are required for Serena's Go language-server support.
41-
- Create `Dockerfile.serena` as a multi-stage build that copies the Go toolchain from `golang:1.26.2-trixie` (the same image used by the project's build targets) and then installs `gopls`.
41+
- Create `Dockerfile.serena` as a multi-stage build that copies the Go toolchain from `golang:1.26.4-trixie` (the same image used by the project's build targets) and then installs `gopls`.
4242
- Update `compose.yml` to build from `Dockerfile.serena` instead of using the stock image directly.
4343

4444
5. **Makefile recipes**

0 commit comments

Comments
 (0)