Skip to content

Commit 2c99e73

Browse files
committed
Update for go 1.27.1
Signed-off-by: Jason Parraga <sovietaced@gmail.com>
1 parent 4914e1b commit 2c99e73

16 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/devbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v5
3838
with:
39-
go-version: "1.27.0"
39+
go-version: "1.27.1"
4040
cache: true
4141

4242
# Exposes ACTIONS_RUNTIME_TOKEN so the Makefile's type=gha buildx cache works.

.github/workflows/go-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Set up Go
4545
uses: actions/setup-go@v5
4646
with:
47-
go-version: "1.27.0"
47+
go-version: "1.27.1"
4848
cache: true
4949

5050
- name: Cache embedded postgres

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Thank you for your interest in contributing to Flyte 2! This guide will help you
1717

1818
Before contributing, ensure you have:
1919
- [Buf CLI](https://buf.build/docs/installation) installed
20-
- Go 1.27.0 or later
20+
- Go 1.27.1 or later
2121
- Node.js and npm (for TypeScript)
2222
- Python 3.10+ with `uv` package manager
2323
- Rust toolchain (if working with Rust bindings)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Todo(alex): We should add UI into the image when UI is done
22

3-
FROM --platform=${BUILDPLATFORM} golang:1.27.0-bookworm AS flytebuilder
3+
FROM --platform=${BUILDPLATFORM} golang:1.27.1-bookworm AS flytebuilder
44

55
ARG TARGETARCH
66
ENV GOARCH="${TARGETARCH}"

boilerplate/flyte/golang_support_tools/go.mod

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

3-
go 1.27.0
3+
go 1.27.1
44

55
require (
66
github.com/alvaroloes/enumer v1.1.2

docker/devbox-bundled/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ARG CACHEBUST=0
1212
RUN echo "cachebust=${CACHEBUST}" && ./preload manifest.txt
1313

1414

15-
FROM --platform=${BUILDPLATFORM} golang:1.27.0-bookworm AS bootstrap
15+
FROM --platform=${BUILDPLATFORM} golang:1.27.1-bookworm AS bootstrap
1616

1717
ARG TARGETARCH
1818
ENV CGO_ENABLED 0

docker/devbox-bundled/bootstrap/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/flyteorg/flyte/docker/devbox-bundled/bootstrap
22

3-
go 1.27.0
3+
go 1.27.1
44

55
require (
66
github.com/fergusstrange/embedded-postgres v1.34.0

docs/BACKEND_README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ flyte/
3333
## Prerequisites
3434

3535
- [Buf CLI](https://buf.build/docs/installation) - Protocol buffer tooling
36-
- Go 1.27.0 or later
36+
- Go 1.27.1 or later
3737
- Node.js/npm (for TypeScript generation)
3838
- Python 3.9+ with `uv` package manager (for Python generation)
3939
- Rust toolchain (for Rust generation)
@@ -152,7 +152,7 @@ The `gen/` directory contains auto-generated code and should not be manually edi
152152

153153
### Go Module Issues
154154
- Run `make go-tidy` to clean up dependencies
155-
- Ensure you're using Go 1.27.0 or later
155+
- Ensure you're using Go 1.27.1 or later
156156

157157
### Python Generation Issues
158158
- Ensure `uv` is installed: `pip install uv`

executor/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Kubebuilder DevContainer",
3-
"image": "golang:1.27.0",
3+
"image": "golang:1.27.1",
44
"features": {
55
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
66
"ghcr.io/devcontainers/features/git:1": {}

executor/DEVELOPMENT.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This guide provides steps on how to develop and iterates changes.
44

55
## Prerequisites
6-
- go version v1.27.0+
6+
- go version v1.27.1+
77
- docker version 17.03+.
88
- kubectl version v1.11.3+.
99

@@ -16,9 +16,9 @@ We recommend using kind to create a Kubernetes cluster for local development.
1616
Currently, Flyte v2 uses Go v1.27 for development.
1717

1818
```sh
19-
go install golang.org/dl/go1.27.0@latest
20-
go1.27.0 download
21-
export GOROOT=$(go1.27.0 env GOROOT)
19+
go install golang.org/dl/go1.27.1@latest
20+
go1.27.1 download
21+
export GOROOT=$(go1.27.1 env GOROOT)
2222
export PATH="$GOROOT/bin:$PATH"
2323
```
2424

0 commit comments

Comments
 (0)