Skip to content

Commit f3c0b3c

Browse files
authored
Merge pull request #766 from sairaj18/bump-go-to-1-24-6
Upgrade Golang version to 1.24.6
2 parents 6621e22 + f76e750 commit f3c0b3c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/setup-go@v3
1414
with:
1515
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
16-
go-version: 1.24.5
16+
go-version: 1.24.6
1717
- name: Test
1818
run: |
1919
make check-fmt

.github/workflows/manual-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/setup-go@v3
4141
with:
4242
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
43-
go-version: 1.24.5
43+
go-version: 1.24.6
4444
- name: Set up QEMU
4545
uses: docker/setup-qemu-action@master
4646
with:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ REGISTRY_NAME := docker-public.packages.atlassian.com
99
IMAGE_PREFIX := $(REGISTRY_NAME)/$(REPOSITORY_NAME)
1010
IMAGE_NAME := $(IMAGE_PREFIX)-$(CPU_ARCH)
1111
ARCH ?= $(shell uname -s | tr A-Z a-z)
12-
GOVERSION := 1.24.5 # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
12+
GOVERSION := 1.24.6 # Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
1313
GP := /gopath
1414
MAIN_PKG := github.com/atlassian/gostatsd/cmd/gostatsd
1515
CLUSTER_PKG := github.com/atlassian/gostatsd/cmd/cluster

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ server based on load.
2424
Building the server
2525
-------------------
2626
[](# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile)
27-
Gostatsd currently targets Go 1.24.5. If you are compiling from source, please ensure you are running this version.
27+
Gostatsd currently targets Go 1.24.6. If you are compiling from source, please ensure you are running this version.
2828

2929
From the `gostatsd` directory run `make build`. The binary will be built in `build/bin/<arch>/gostatsd`.
3030

build/Dockerfile-multiarch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
2-
FROM golang:1.24.5 AS build
2+
FROM golang:1.24.6 AS build
33
WORKDIR /build
44

55
# Install dependencies first to take advantage of the docker build cache.

build/Dockerfile-multiarch-glibc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
2-
FROM golang:1.24.5 AS build
2+
FROM golang:1.24.6 AS build
33
WORKDIR /build
44

55
# Install dependencies first to take advantage of the docker build cache.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/atlassian/gostatsd
22

3-
go 1.24.5
3+
go 1.24.6
44

55
require (
66
github.com/alicebob/miniredis/v2 v2.23.0

0 commit comments

Comments
 (0)