From d136e4a499454dde9eb3b72af2da9fa06bc58107 Mon Sep 17 00:00:00 2001 From: sairaj18 Date: Tue, 4 Nov 2025 16:43:55 +0530 Subject: [PATCH] chore(deps): update go version from 1.24.6 to 1.25.3 --- .github/workflows/ci.yml | 2 +- .github/workflows/manual-release.yml | 2 +- Makefile | 2 +- README.md | 2 +- build/Dockerfile-multiarch | 2 +- build/Dockerfile-multiarch-glibc | 2 +- go.mod | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aac8d8e9..8ce035cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: uses: actions/setup-go@v3 with: # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile - go-version: 1.24.6 + go-version: 1.25.3 - name: Test run: | make check-fmt diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index 578261e9..2ee56ab8 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -40,7 +40,7 @@ jobs: uses: actions/setup-go@v3 with: # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile - go-version: 1.24.6 + go-version: 1.25.3 - name: Set up QEMU uses: docker/setup-qemu-action@master with: diff --git a/Makefile b/Makefile index 30aa8d6c..96da080b 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ REGISTRY_NAME := docker-public.packages.atlassian.com IMAGE_PREFIX := $(REGISTRY_NAME)/$(REPOSITORY_NAME) IMAGE_NAME := $(IMAGE_PREFIX)-$(CPU_ARCH) ARCH ?= $(shell uname -s | tr A-Z a-z) -GOVERSION := 1.24.6 # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile +GOVERSION := 1.25.3 # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile GP := /gopath MAIN_PKG := github.com/atlassian/gostatsd/cmd/gostatsd CLUSTER_PKG := github.com/atlassian/gostatsd/cmd/cluster diff --git a/README.md b/README.md index 22bf915e..7a6afb19 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ server based on load. Building the server ------------------- [](# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile) -Gostatsd currently targets Go 1.24.6. If you are compiling from source, please ensure you are running this version. +Gostatsd currently targets Go 1.25.3. If you are compiling from source, please ensure you are running this version. From the `gostatsd` directory run `make build`. The binary will be built in `build/bin//gostatsd`. diff --git a/build/Dockerfile-multiarch b/build/Dockerfile-multiarch index aa893ef2..0132b0b6 100644 --- a/build/Dockerfile-multiarch +++ b/build/Dockerfile-multiarch @@ -1,5 +1,5 @@ # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile -FROM golang:1.24.6 AS build +FROM golang:1.25.3 AS build WORKDIR /build # Install dependencies first to take advantage of the docker build cache. diff --git a/build/Dockerfile-multiarch-glibc b/build/Dockerfile-multiarch-glibc index 1f61955b..f38ba629 100644 --- a/build/Dockerfile-multiarch-glibc +++ b/build/Dockerfile-multiarch-glibc @@ -1,5 +1,5 @@ # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile -FROM golang:1.24.6 AS build +FROM golang:1.25.3 AS build WORKDIR /build # Install dependencies first to take advantage of the docker build cache. diff --git a/go.mod b/go.mod index 6e35d158..df26ff71 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/atlassian/gostatsd -go 1.24.6 +go 1.25.3 require ( github.com/alicebob/miniredis/v2 v2.23.0