File tree Expand file tree Collapse file tree 13 files changed +14
-16
lines changed
Expand file tree Collapse file tree 13 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 1919 - master
2020
2121env :
22- GO_VERSION : " 1.23 "
22+ GO_VERSION : " 1.25 "
2323
2424concurrency :
2525 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ permissions:
1313 contents : read
1414
1515env :
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
Original file line number Diff line number Diff line change 1616 type : string
1717
1818env :
19- GO_VERSION : " 1.23 "
19+ GO_VERSION : " 1.25 "
2020 PRIVATE_REGISTRY_HOST : us-central1-docker.pkg.dev
2121
2222jobs :
Original file line number Diff line number Diff line change 1414 type : boolean
1515
1616env :
17- GO_VERSION : " 1.23 "
17+ GO_VERSION : " 1.25 "
1818
1919jobs :
2020 build-publish :
Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff line change 33
44# ###################################
55# # (1) Setup the build environment
6- FROM golang:1.23 -bullseye AS build-setup
6+ FROM golang:1.25 -bullseye AS build-setup
77
88RUN apt-get update
99RUN apt-get -y install zip apt-utils gcc-aarch64-linux-gnu
@@ -85,7 +85,7 @@ RUN --mount=type=ssh \
8585RUN 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 -bullseye as debug
8989
9090RUN go install github.com/go-delve/delve/cmd/dlv@latest
9191
Original file line number Diff line number Diff line change 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.
22module github.com/onflow/flow-go/crypto
33
4- go 1.23
4+ go 1.25
Original file line number Diff line number Diff line change 11module github.com/onflow/flow-go
22
3- go 1.23.7
3+ go 1.25.0
44
55require (
66 cloud.google.com/go/compute/metadata v0.7.0
Original file line number Diff line number Diff line change 11module github.com/onflow/flow-go/insecure
22
3- go 1.23.7
3+ go 1.25.0
44
55require (
66 github.com/btcsuite/btcd/chaincfg/chainhash v1.0.2
Original file line number Diff line number Diff line change 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 -bullseye AS build-setup
55
66RUN apt-get update
77RUN apt-get -y install zip
You can’t perform that action at this time.
0 commit comments