Skip to content

Commit 028ef11

Browse files
authored
chore(build): upgrade Go to 1.25.5 (#6165)
1 parent dfa5dbd commit 028ef11

6 files changed

Lines changed: 15 additions & 9 deletions

File tree

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ workflows:
8888
jobs:
8989
build:
9090
environment:
91-
DOCKER_TAG: chronograf-20251015
91+
DOCKER_TAG: chronograf-20260112
9292
GO111MODULE: "ON"
9393
machine:
9494
image: ubuntu-2204:current
@@ -112,7 +112,7 @@ jobs:
112112

113113
deploy-nightly:
114114
environment:
115-
DOCKER_TAG: chronograf-20251015
115+
DOCKER_TAG: chronograf-20260112
116116
GO111MODULE: "ON"
117117
machine:
118118
image: ubuntu-2204:current
@@ -141,7 +141,7 @@ jobs:
141141

142142
build-nightly:
143143
environment:
144-
DOCKER_TAG: chronograf-20251015
144+
DOCKER_TAG: chronograf-20260112
145145
GO111MODULE: "ON"
146146
machine:
147147
image: ubuntu-2204:current
@@ -162,7 +162,7 @@ jobs:
162162

163163
deploy-pre-release:
164164
environment:
165-
DOCKER_TAG: chronograf-20251015
165+
DOCKER_TAG: chronograf-20260112
166166
GO111MODULE: "ON"
167167
machine:
168168
image: ubuntu-2204:current
@@ -197,7 +197,7 @@ jobs:
197197

198198
deploy-release:
199199
environment:
200-
DOCKER_TAG: chronograf-20251015
200+
DOCKER_TAG: chronograf-20260112
201201
GO111MODULE: "ON"
202202
machine:
203203
image: ubuntu-2204:current

.github/workflows/chronograf-cypress-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Go
2828
uses: actions/setup-go@v2
2929
with:
30-
go-version: '1.25.3'
30+
go-version: '1.25.5'
3131

3232
- uses: actions/setup-node@v2
3333
with:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [unreleased]
2+
3+
### Other
4+
5+
1. [#6165](https://github.com/influxdata/chronograf/pull/6165): Upgrade golang to 1.25.5
6+
17
## v1.10.9 [2026-01-07]
28

39
### Features

etc/Dockerfile_build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
3434

3535
# Install go
3636
ENV GOPATH /root/go
37-
ENV GO_VERSION 1.25.3
37+
ENV GO_VERSION 1.25.5
3838
ENV GO_ARCH amd64
3939
ENV GO111MODULES ON
4040
RUN wget https://golang.org/dl/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz; \

etc/scripts/docker/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ test -z $SSH_KEY_PATH && SSH_KEY_PATH="$HOME/.ssh/id_rsa"
1414
echo "Using SSH key located at: $SSH_KEY_PATH"
1515

1616
# Default docker tag if not specified
17-
test -z "$DOCKER_TAG" && DOCKER_TAG="chronograf-20251015"
17+
test -z "$DOCKER_TAG" && DOCKER_TAG="chronograf-20260112"
1818

1919
docker run \
2020
-e AWS_ACCESS_KEY_ID \

go.mod

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

3-
go 1.25.3
3+
go 1.25.5
44

55
require (
66
cloud.google.com/go/bigtable v1.10.0 // indirect

0 commit comments

Comments
 (0)