Skip to content

Commit ddc56a0

Browse files
authored
Build Cortex with go 1.19.3 (#4988)
Signed-off-by: Friedrich Gonzalez <[email protected]> Signed-off-by: Friedrich Gonzalez <[email protected]>
1 parent 5347bf4 commit ddc56a0

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint:
1212
runs-on: ubuntu-20.04
1313
container:
14-
image: quay.io/cortexproject/build-image:update-go-1-19-a2f4d2c79
14+
image: quay.io/cortexproject/build-image:upgrade-to-go1.19.3-e8b98ddc0
1515
steps:
1616
- name: Checkout Repo
1717
uses: actions/checkout@v2
@@ -35,7 +35,7 @@ jobs:
3535
test:
3636
runs-on: ubuntu-20.04
3737
container:
38-
image: quay.io/cortexproject/build-image:update-go-1-19-a2f4d2c79
38+
image: quay.io/cortexproject/build-image:upgrade-to-go1.19.3-e8b98ddc0
3939
steps:
4040
- name: Checkout Repo
4141
uses: actions/checkout@v2
@@ -49,7 +49,7 @@ jobs:
4949
build:
5050
runs-on: ubuntu-20.04
5151
container:
52-
image: quay.io/cortexproject/build-image:update-go-1-19-a2f4d2c79
52+
image: quay.io/cortexproject/build-image:upgrade-to-go1.19.3-e8b98ddc0
5353
steps:
5454
- name: Checkout Repo
5555
uses: actions/checkout@v2
@@ -165,14 +165,14 @@ jobs:
165165
run: |
166166
touch build-image/.uptodate
167167
MIGRATIONS_DIR=$(pwd)/cmd/cortex/migrations
168-
make BUILD_IMAGE=quay.io/cortexproject/build-image:update-go-1-19-a2f4d2c79 TTY='' configs-integration-test
168+
make BUILD_IMAGE=quay.io/cortexproject/build-image:upgrade-to-go1.19.3-e8b98ddc0 TTY='' configs-integration-test
169169
170170
deploy_website:
171171
needs: [build, test]
172172
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && github.repository == 'cortexproject/cortex'
173173
runs-on: ubuntu-20.04
174174
container:
175-
image: quay.io/cortexproject/build-image:update-go-1-19-a2f4d2c79
175+
image: quay.io/cortexproject/build-image:upgrade-to-go1.19.3-e8b98ddc0
176176
steps:
177177
- name: Checkout Repo
178178
uses: actions/checkout@v2
@@ -209,7 +209,7 @@ jobs:
209209
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && github.repository == 'cortexproject/cortex'
210210
runs-on: ubuntu-20.04
211211
container:
212-
image: quay.io/cortexproject/build-image:update-go-1-19-a2f4d2c79
212+
image: quay.io/cortexproject/build-image:upgrade-to-go1.19.3-e8b98ddc0
213213
steps:
214214
- name: Checkout Repo
215215
uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## master / unreleased
4+
* [ENHANCEMENT] Update Go version to 1.19.3. #4988
45
* [FEATURE] Querier/Query Frontend: support Prometheus /api/v1/status/buildinfo API. #4978
56

67
## 1.14.0 in progress

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ build-image/$(UPTODATE): build-image/*
118118
SUDO := $(shell docker info >/dev/null 2>&1 || echo "sudo -E")
119119
BUILD_IN_CONTAINER := true
120120
BUILD_IMAGE ?= $(IMAGE_PREFIX)build-image
121-
LATEST_BUILD_IMAGE_TAG ?= update-go-1-19-a2f4d2c79
121+
LATEST_BUILD_IMAGE_TAG ?= upgrade-to-go1.19.3-e8b98ddc0
122122

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

0 commit comments

Comments
 (0)