Skip to content

Commit 6a93782

Browse files
authored
Merge pull request #7821 from onflow/peter/update-go-1.25
Update go to 1.25
2 parents c95bab2 + 99d8b50 commit 6a93782

File tree

14 files changed

+27
-17
lines changed

14 files changed

+27
-17
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
- master
2020

2121
env:
22-
GO_VERSION: "1.23"
22+
GO_VERSION: "1.25"
2323

2424
concurrency:
2525
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}

.github/workflows/flaky-test-monitor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
contents: read
1414

1515
env:
16-
GO_VERSION: "1.23"
16+
GO_VERSION: "1.25"
1717
BIGQUERY_DATASET: dev_src_flow_test_metrics
1818
BIGQUERY_TABLE: skipped_tests
1919
BIGQUERY_TABLE2: test_results

.github/workflows/image_builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
type: string
1717

1818
env:
19-
GO_VERSION: "1.23"
19+
GO_VERSION: "1.25"
2020
PRIVATE_REGISTRY_HOST: us-central1-docker.pkg.dev
2121

2222
jobs:

.github/workflows/tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
type: boolean
1515

1616
env:
17-
GO_VERSION: "1.23"
17+
GO_VERSION: "1.25"
1818

1919
jobs:
2020
build-publish:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The following table lists all work streams and links to their home directory and
5454
## Installation
5555

5656
- Clone this repository
57-
- Install [Go](https://golang.org/doc/install) (Flow requires Go 1.23 and later)
57+
- Install [Go](https://golang.org/doc/install) (Flow requires Go 1.25 and later)
5858
- Install [Docker](https://docs.docker.com/get-docker/), which is used for running a local network and integration tests
5959
- Make sure the [`GOPATH`](https://golang.org/cmd/go/#hdr-GOPATH_environment_variable) and `GOBIN` environment variables
6060
are set, and `GOBIN` is added to your path:

cmd/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
####################################
55
## (1) Setup the build environment
6-
FROM golang:1.23-bullseye AS build-setup
6+
FROM golang:1.25-bookworm AS build-setup
77

88
RUN apt-get update
99
RUN apt-get -y install zip apt-utils gcc-aarch64-linux-gnu
@@ -85,7 +85,7 @@ RUN --mount=type=ssh \
8585
RUN chmod a+x /app/app
8686

8787
## (4) Add the statically linked debug binary to a distroless image configured for debugging
88-
FROM golang:1.23-bullseye as debug
88+
FROM golang:1.25-bookworm as debug
8989

9090
RUN go install github.com/go-delve/delve/cmd/dlv@latest
9191

crypto/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Deprecated: The latest supported version is v0.25.0. The module then migrated to github.com/onflow/crypto. Use the new module github.com/onflow/crypto instead.
22
module github.com/onflow/flow-go/crypto
33

4-
go 1.23
4+
go 1.25

go.mod

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

3-
go 1.23.7
3+
go 1.25.0
44

55
require (
66
cloud.google.com/go/compute/metadata v0.7.0

insecure/go.mod

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

3-
go 1.23.7
3+
go 1.25.0
44

55
require (
66
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.2

integration/benchmark/cmd/manual/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax = docker/dockerfile:experimental
22
# NOTE: Must be run in the context of the repo's root directory
33

4-
FROM golang:1.23-bullseye AS build-setup
4+
FROM golang:1.25-bookworm AS build-setup
55

66
RUN apt-get update
77
RUN apt-get -y install zip

0 commit comments

Comments
 (0)