diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f846d65c..aac8d8e9 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.5 + go-version: 1.24.6 - name: Test run: | make check-fmt diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index f1437629..578261e9 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.5 + go-version: 1.24.6 - name: Set up QEMU uses: docker/setup-qemu-action@master with: diff --git a/Makefile b/Makefile index 4e04fa00..30aa8d6c 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.5 # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile +GOVERSION := 1.24.6 # 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 a3ad16ff..22bf915e 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.5. If you are compiling from source, please ensure you are running this version. +Gostatsd currently targets Go 1.24.6. 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 e57a25a1..aa893ef2 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.5 AS build +FROM golang:1.24.6 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 61f6ab35..1f61955b 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.5 AS build +FROM golang:1.24.6 AS build WORKDIR /build # Install dependencies first to take advantage of the docker build cache. diff --git a/go.mod b/go.mod index 48bf2593..6e35d158 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/atlassian/gostatsd -go 1.24.5 +go 1.24.6 require ( github.com/alicebob/miniredis/v2 v2.23.0