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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/<arch>/gostatsd`.

Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile-multiarch
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile-multiarch-glibc
Original file line number Diff line number Diff line change
@@ -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.
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/atlassian/gostatsd

go 1.24.5
go 1.24.6

require (
github.com/alicebob/miniredis/v2 v2.23.0
Expand Down