Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ workflows:
jobs:
build:
environment:
DOCKER_TAG: chronograf-20251015
DOCKER_TAG: chronograf-20260112
GO111MODULE: "ON"
machine:
image: ubuntu-2204:current
Expand All @@ -112,7 +112,7 @@ jobs:

deploy-nightly:
environment:
DOCKER_TAG: chronograf-20251015
DOCKER_TAG: chronograf-20260112
GO111MODULE: "ON"
machine:
image: ubuntu-2204:current
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:

build-nightly:
environment:
DOCKER_TAG: chronograf-20251015
DOCKER_TAG: chronograf-20260112
GO111MODULE: "ON"
machine:
image: ubuntu-2204:current
Expand All @@ -162,7 +162,7 @@ jobs:

deploy-pre-release:
environment:
DOCKER_TAG: chronograf-20251015
DOCKER_TAG: chronograf-20260112
GO111MODULE: "ON"
machine:
image: ubuntu-2204:current
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

deploy-release:
environment:
DOCKER_TAG: chronograf-20251015
DOCKER_TAG: chronograf-20260112
GO111MODULE: "ON"
machine:
image: ubuntu-2204:current
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chronograf-cypress-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.25.3'
go-version: '1.25.5'

- uses: actions/setup-node@v2
with:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [unreleased]

### Other

1. [#6165](https://github.com/influxdata/chronograf/pull/6165): Upgrade golang to 1.25.5

## v1.10.9 [2026-01-07]

### Features
Expand Down
2 changes: 1 addition & 1 deletion etc/Dockerfile_build
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \

# Install go
ENV GOPATH /root/go
ENV GO_VERSION 1.25.3
ENV GO_VERSION 1.25.5
ENV GO_ARCH amd64
ENV GO111MODULES ON
RUN wget https://golang.org/dl/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz; \
Expand Down
2 changes: 1 addition & 1 deletion etc/scripts/docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test -z $SSH_KEY_PATH && SSH_KEY_PATH="$HOME/.ssh/id_rsa"
echo "Using SSH key located at: $SSH_KEY_PATH"

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

docker run \
-e AWS_ACCESS_KEY_ID \
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/influxdata/chronograf

go 1.25.3
go 1.25.5

require (
cloud.google.com/go/bigtable v1.10.0 // indirect
Expand Down
Loading