Skip to content

Commit 25eaaf1

Browse files
committed
chore: update Go to 1.26.5 and Alpine to 3.24
1 parent fda7bef commit 25eaaf1

27 files changed

Lines changed: 34 additions & 35 deletions

File tree

‎.github/workflows/pr-tests-arm64.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
if: matrix.sudo == true
186186

187187
# sudo strips PATH; pass it through so gotestsum/go resolve to the runner's
188-
# toolchain (1.26.3) instead of /usr/bin/go. Trap chowns reports back to
188+
# toolchain (1.26.5) instead of /usr/bin/go. Trap chowns reports back to
189189
# the runner so uploads can read them even when tests fail.
190190
- name: Run tests that require sudo
191191
working-directory: ${{ matrix.package }}

‎.github/workflows/pr-tests.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
run: go install gotest.tools/gotestsum@v1.13.0
124124

125125
# sudo strips PATH; pass it through so gotestsum/go resolve to the runner's
126-
# toolchain (1.26.3) instead of /usr/bin/go. Trap chowns reports back to
126+
# toolchain (1.26.5) instead of /usr/bin/go. Trap chowns reports back to
127127
# the runner so uploads can read them even when tests fail.
128128
- name: Run tests that require sudo
129129
working-directory: ${{ matrix.package }}

‎.tool-versions‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buf 1.28.1
22
bun 1.3.2
33
gcloud 534.0.0
4-
go 1.26.3
4+
go 1.26.5
55
go:golang.org/x/tools/gopls 0.21.1
66
go:github.com/vektra/mockery/v3 v3.7.0
77
golangci-lint 2.11.4

‎CLAUDE.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Client → Client-Proxy → API (REST) ⟷ PostgreSQL
153153

154154
### Key Technologies
155155

156-
- **go 1.26.3** with workspaces (`go.work`)
156+
- **go 1.26.5** with workspaces (`go.work`)
157157
- **Firecracker** for microVM virtualization
158158
- **PostgreSQL** for primary data (sqlc for queries)
159159
- **ClickHouse** for analytics

‎go.work‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.26.3
1+
go 1.26.5
22

33
use (
44
./packages/api

‎packages/api/Dockerfile‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG GOLANG_VERSION=1.26.3
2-
ARG ALPINE_VERSION=3.22
1+
ARG GOLANG_VERSION=1.26.5
2+
ARG ALPINE_VERSION=3.24
33

44
FROM golang:${GOLANG_VERSION}-alpine${ALPINE_VERSION} AS builder
55

‎packages/api/go.mod‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/e2b-dev/infra/packages/api
22

3-
go 1.26.3
3+
go 1.26.5
44

55
// Internal packages
66
replace (

‎packages/auth/go.mod‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/e2b-dev/infra/packages/auth
22

3-
go 1.26.3
3+
go 1.26.5
44

55
replace github.com/e2b-dev/infra/packages/db => ../db
66

‎packages/clickhouse/Dockerfile‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG GOLANG_VERSION=1.26.4
2-
ARG ALPINE_VERSION=3.22
1+
ARG GOLANG_VERSION=1.26.5
2+
ARG ALPINE_VERSION=3.24
33

44
# Builder stage
55
FROM golang:${GOLANG_VERSION}-alpine${ALPINE_VERSION} AS builder

‎packages/clickhouse/go.mod‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/e2b-dev/infra/packages/clickhouse
22

3-
go 1.26.3
3+
go 1.26.5
44

55
replace github.com/e2b-dev/infra/packages/shared => ../shared
66

0 commit comments

Comments
 (0)