Skip to content

Commit 4cbd444

Browse files
committed
Update to go 1.25.8
See fe84258 Signed-off-by: Friedrich Gonzalez <1517449+friedrichg@users.noreply.github.com>
1 parent fe84258 commit 4cbd444

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/test-build-deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
lint:
1818
runs-on: ubuntu-24.04
1919
container:
20-
image: quay.io/cortexproject/build-image:master-7e2dda3451
20+
image: quay.io/cortexproject/build-image:master-fe84258322
2121
steps:
2222
- name: Checkout Repo
2323
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -57,7 +57,7 @@ jobs:
5757
name: test (${{ matrix.name }})
5858
runs-on: ${{ matrix.runner }}
5959
container:
60-
image: quay.io/cortexproject/build-image:master-7e2dda3451
60+
image: quay.io/cortexproject/build-image:master-fe84258322
6161
steps:
6262
- name: Checkout Repo
6363
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -85,7 +85,7 @@ jobs:
8585
name: test-no-race (${{ matrix.name }})
8686
runs-on: ${{ matrix.runner }}
8787
container:
88-
image: quay.io/cortexproject/build-image:master-7e2dda3451
88+
image: quay.io/cortexproject/build-image:master-fe84258322
8989
steps:
9090
- name: Checkout Repo
9191
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -128,7 +128,7 @@ jobs:
128128
build:
129129
runs-on: ubuntu-24.04
130130
container:
131-
image: quay.io/cortexproject/build-image:master-7e2dda3451
131+
image: quay.io/cortexproject/build-image:master-fe84258322
132132
steps:
133133
- name: Checkout Repo
134134
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -241,7 +241,7 @@ jobs:
241241
- name: Upgrade golang
242242
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
243243
with:
244-
go-version: 1.25.5
244+
go-version: 1.25.8
245245
- name: Checkout Repo
246246
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
247247
- name: Install Docker Client
@@ -324,14 +324,14 @@ jobs:
324324
touch build-image/.uptodate
325325
MIGRATIONS_DIR=$(pwd)/cmd/cortex/migrations
326326
echo "Running configs integration tests on ${{ matrix.arch }}"
327-
make BUILD_IMAGE=quay.io/cortexproject/build-image:master-7e2dda3451 TTY='' configs-integration-test
327+
make BUILD_IMAGE=quay.io/cortexproject/build-image:master-fe84258322 TTY='' configs-integration-test
328328
329329
deploy_website:
330330
needs: [build, test, lint]
331331
if: github.ref == 'refs/heads/master' && github.repository == 'cortexproject/cortex'
332332
runs-on: ubuntu-24.04
333333
container:
334-
image: quay.io/cortexproject/build-image:master-7e2dda3451
334+
image: quay.io/cortexproject/build-image:master-fe84258322
335335
steps:
336336
- name: Checkout Repo
337337
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -373,7 +373,7 @@ jobs:
373373
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && github.repository == 'cortexproject/cortex'
374374
runs-on: ubuntu-24.04
375375
container:
376-
image: quay.io/cortexproject/build-image:master-7e2dda3451
376+
image: quay.io/cortexproject/build-image:master-fe84258322
377377
steps:
378378
- name: Checkout Repo
379379
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* [ENHANCEMENT] Compactor: Avoid double compaction by cleaning partition files in 2 cycles. #7130 #7209 #7257
4040
* [ENHANCEMENT] Distributor: Optimize memory usage by recycling v2 requests. #7131
4141
* [ENHANCEMENT] Compactor: Avoid double compaction by not filtering delete blocks on real time when using bucketIndex lister. #7156
42-
* [ENHANCEMENT] Upgrade to go 1.25. #7164
42+
* [ENHANCEMENT] Upgrade to go 1.25. #7164 #7340
4343
* [ENHANCEMENT] Upgraded container base images to `alpine:3.23`. #7163
4444
* [ENHANCEMENT] Ingester: Instrument Ingester CPU profile with userID for read APIs. #7184
4545
* [ENHANCEMENT] Ingester: Add fetch timeout for Ingester expanded postings cache. #7185

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ build-image/$(UPTODATE): build-image/*
112112
SUDO := $(shell docker info >/dev/null 2>&1 || echo "sudo -E")
113113
BUILD_IN_CONTAINER := true
114114
BUILD_IMAGE ?= $(IMAGE_PREFIX)build-image
115-
LATEST_BUILD_IMAGE_TAG ?= master-7e2dda3451
115+
LATEST_BUILD_IMAGE_TAG ?= master-fe84258322
116116

117117
# TTY is parameterized to allow Google Cloud Builder to run builds,
118118
# as it currently disallows TTY devices. This value needs to be overridden

go.mod

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

3-
go 1.25.5
3+
go 1.25.0
44

55
require (
66
github.com/Masterminds/squirrel v1.5.4

0 commit comments

Comments
 (0)