Skip to content

Commit af71fed

Browse files
committed
Update to go 1.27
Signed-off-by: Jason Parraga <sovietaced@gmail.com>
1 parent c45fff0 commit af71fed

31 files changed

Lines changed: 369 additions & 361 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.25"
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/flyte-binary-v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: golangci/golangci-lint-action@v9
4242
with:
4343
working-directory: docker/devbox-bundled/bootstrap
44-
version: v2.12.2
44+
version: v2.13.2
4545
- name: Check formatting
4646
working-directory: docker/devbox-bundled/bootstrap
4747
run: |

.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.25"
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.26.5 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.26.6-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: 57 additions & 57 deletions
Large diffs are not rendered by default.

boilerplate/flyte/golang_support_tools/go.sum

Lines changed: 122 additions & 117 deletions
Large diffs are not rendered by default.

boilerplate/flyte/golang_test_targets/download_tooling.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ set -e
1717
# In the format of "<cli>:<package>" or ":<package>" if no cli
1818
tools=(
1919
"github.com/vektra/mockery/v3@v3.7.0"
20-
"github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.12.2"
20+
"github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.13.2"
2121
"github.com/daixiang0/gci"
2222
"github.com/alvaroloes/enumer"
2323
"github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc"

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.26.5-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.26.5
3+
go 1.27.1
44

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

0 commit comments

Comments
 (0)