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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ executors:
working_directory: '/go/src/github.com/influxdata/telegraf'
resource_class: large
docker:
- image: 'quay.io/influxdb/telegraf-ci:1.25.1'
- image: 'quay.io/influxdb/telegraf-ci:1.25.2'
environment:
GOFLAGS: -p=4
mac:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/readme-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/setup-go@v6
with:
go-version: '1.25.1'
go-version: '1.25.2'
- uses: actions/checkout@v5
with:
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ plugins/parsers/influx/machine.go: plugins/parsers/influx/machine.go.rl

.PHONY: ci
ci:
docker build -t quay.io/influxdb/telegraf-ci:1.25.1 - < scripts/ci.docker
docker push quay.io/influxdb/telegraf-ci:1.25.1
docker build -t quay.io/influxdb/telegraf-ci:1.25.2 - < scripts/ci.docker
docker push quay.io/influxdb/telegraf-ci:1.25.2

.PHONY: install
install: $(buildbin)
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci.docker
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.1
FROM golang:1.25.2

RUN chmod -R 755 "$GOPATH"

Expand Down
4 changes: 2 additions & 2 deletions scripts/installgo_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

set -eux

GO_VERSION="1.25.1"
GO_VERSION="1.25.2"
GO_ARCH="linux-amd64"
# from https://go.dev/dl
GO_VERSION_SHA="7716a0d940a0f6ae8e1f3b3f4f36299dc53e31b16840dbd171254312c41ca12e"
GO_VERSION_SHA="d7fa7f8fbd16263aa2501d681b11f972a5fd8e811f7b10cb9b26d031a3d7454b"

# Download Go and verify Go tarball
setup_go () {
Expand Down
6 changes: 3 additions & 3 deletions scripts/installgo_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
set -eux

ARCH=$(uname -m)
GO_VERSION="1.25.1"
GO_VERSION_SHA_arm64="68deebb214f39d542e518ebb0598a406ab1b5a22bba8ec9ade9f55fb4dd94a6c" # from https://go.dev/dl
GO_VERSION_SHA_amd64="1d622468f767a1b9fe1e1e67bd6ce6744d04e0c68712adc689748bbeccb126bb" # from https://go.dev/dl
GO_VERSION="1.25.2"
GO_VERSION_SHA_arm64="d1ade1b480e51b6269b6e65856c602aed047e1f0d32fffef7eebbd7faa8d7687" # from https://go.dev/dl
GO_VERSION_SHA_amd64="95493abb01da81638ab5083ff3f97e8f923cb42a64c2e16728e3cf5b0cd3fc5a" # from https://go.dev/dl

if [ "$ARCH" = 'arm64' ]; then
GO_ARCH="darwin-arm64"
Expand Down
2 changes: 1 addition & 1 deletion scripts/installgo_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eux

GO_VERSION="1.25.1"
GO_VERSION="1.25.2"

setup_go () {
choco upgrade golang --allow-downgrade --version=${GO_VERSION}
Expand Down
Loading