Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit 9769663

Browse files
Upgrade to go version 1.24 (#1279)
Bump go lang version and fix two issues along the way. --------- Co-authored-by: Piotr Grabowski <[email protected]>
1 parent cc0bcbd commit 9769663

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

.github/workflows/build-quesma-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: actions/setup-go@v5
4646
with:
4747
cache-dependency-path: ${{ matrix.module }}/go.sum
48-
go-version: '1.23'
48+
go-version: '1.24'
4949

5050
- name: Log in to Docker Hub
5151
uses: docker/login-action@v3

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-go@v5
2626
with:
2727
cache-dependency-path: smoke-test/go.sum
28-
go-version: '1.23'
28+
go-version: '1.24'
2929

3030
- name: Download images
3131
uses: actions/download-artifact@v4

.github/workflows/generate-notice.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/setup-go@v5
2727
with:
2828
cache-dependency-path: ${{ matrix.module }}/go.sum
29-
go-version: '1.23'
29+
go-version: '1.24'
3030

3131
- name: Install go-licence-detector
3232
working-directory: ${{ matrix.module }}

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/setup-go@v5
2727
with:
2828
cache-dependency-path: smoke-test/go.sum
29-
go-version: '1.23'
29+
go-version: '1.24'
3030

3131
- name: Download images
3232
uses: actions/download-artifact@v4

.github/workflows/pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/setup-go@v5
2929
with:
3030
cache-dependency-path: ${{ matrix.module }}/go.sum
31-
go-version: '1.23'
31+
go-version: '1.24'
3232

3333
- name: gofmt
3434
working-directory: ${{ matrix.module }}
@@ -57,7 +57,7 @@ jobs:
5757

5858
- uses: dominikh/[email protected]
5959
with:
60-
version: "2024.1.1"
60+
version: "2025.1"
6161
install-go: false
6262
working-directory: ${{ matrix.module }}
6363

@@ -87,7 +87,7 @@ jobs:
8787
uses: actions/setup-go@v5
8888
with:
8989
cache-dependency-path: ${{ matrix.module }}/go.sum
90-
go-version: '1.23'
90+
go-version: '1.24'
9191

9292
- name: Build and export
9393
uses: docker/build-push-action@v6
@@ -117,7 +117,7 @@ jobs:
117117
uses: actions/setup-go@v5
118118
with:
119119
cache-dependency-path: smoke-test/go.sum
120-
go-version: '1.23'
120+
go-version: '1.24'
121121

122122
- name: Download images
123123
uses: actions/download-artifact@v4

.github/workflows/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@v5
4141
with:
4242
cache-dependency-path: ${{ matrix.module }}/go.sum
43-
go-version: '1.23'
43+
go-version: '1.24'
4444

4545
- name: Login to GCR (only for build running on `main` branch)
4646
uses: docker/login-action@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<p align="center">
66
<a href="https://github.com/QuesmaOrg/quesma/actions/workflows/pipeline.yml"><img src="https://github.com/QuesmaOrg/quesma/actions/workflows/pipeline.yml/badge.svg"></a>
77
<a href="https://img.shields.io/github/v/release/QuesmaOrg/quesma"><img src="https://img.shields.io/github/v/release/QuesmaOrg/quesma"></a>
8-
<a href=""><img src="https://img.shields.io/badge/golang-1.23.2-blue" /></a>
8+
<a href=""><img src="https://img.shields.io/badge/golang-1.24.0-blue" /></a>
99
<a href=""><img src="https://img.shields.io/badge/License-Elastic_License_2.0-lightgrey" /></a>
1010
<a href="https://goreportcard.com/report/github.com/QuesmaOrg/quesma"><img src="https://goreportcard.com/badge/github.com/QuesmaOrg/quesma" /></a>
1111
</p>

ci/e2e-data-generator/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module quesma/e2e-data-generator
22

3-
go 1.23.5
3+
go 1.24.0

ci/it/go.mod

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

3-
go 1.23.5
3+
go 1.24.0
44

55
require (
66
github.com/ClickHouse/clickhouse-go/v2 v2.20.0

quesma/go.mod

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

3-
go 1.23.5
3+
go 1.24.0
44

55
require (
66
github.com/ClickHouse/clickhouse-go/v2 v2.32.1

0 commit comments

Comments
 (0)