Skip to content

Commit 500e2b2

Browse files
committed
feat(ver): update to go 1.24.1
Signed-off-by: Jiyong Huang <huangjy@emqx.io>
1 parent 42cc1fa commit 500e2b2

File tree

33 files changed

+53
-53
lines changed

33 files changed

+53
-53
lines changed

.github/workflows/build_packages.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
matrix:
3535
golang:
36-
- 1.23.4
36+
- 1.24.1
3737
arch: ${{fromJson(needs.prepare.outputs.arch)}}
3838
os:
3939
- debian
@@ -79,7 +79,7 @@ jobs:
7979
fetch-depth: 0
8080
- uses: actions/setup-go@v5
8181
with:
82-
go-version: '1.23.4'
82+
go-version: '1.24.1'
8383
- name: prepare
8484
run: |
8585
brew install zip unzip gnu-sed zmq
@@ -117,7 +117,7 @@ jobs:
117117
- "-slim-python"
118118
- "-full"
119119
golang:
120-
- 1.23.4
120+
- 1.24.1
121121

122122
steps:
123123
- uses: actions/checkout@v4
@@ -211,7 +211,7 @@ jobs:
211211
- [ debian, "slim" ]
212212
- [ alpine, "alpine" ]
213213
golang:
214-
- 1.23.4
214+
- 1.24.1
215215
exclude:
216216
- arch: linux/arm/v7
217217
- os: [ alpine,"alpine" ]

.github/workflows/run_fvt_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- uses: actions/setup-go@v5
4343
with:
44-
go-version: '1.23'
44+
go-version: '1.24'
4545
- uses: actions/setup-java@v4
4646
with:
4747
distribution: zulu
@@ -156,7 +156,7 @@ jobs:
156156
steps:
157157
- uses: actions/setup-go@v5
158158
with:
159-
go-version: '1.23'
159+
go-version: '1.24'
160160
- uses: actions/setup-java@v4
161161
with:
162162
distribution: zulu

.github/workflows/run_test_case.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525
- uses: actions/setup-go@v5
2626
with:
27-
go-version: '1.23'
27+
go-version: '1.24'
2828
- uses: actions/setup-python@v5
2929
with:
3030
python-version: '3.x'

.golangci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ run:
22
timeout: 10m
33
build-tags:
44
- full
5-
go: '1.23'
5+
go: '1.24'
66

77
linters:
88
disable-all: true

README-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ eKuiper 可以运行在各类物联网的边缘使用场景中,比如,
178178

179179
#### 准备
180180

181-
+ Go version >= 1.23
181+
+ Go version >= 1.24
182182

183183
#### 编译
184184

README-JP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ eKuiperのエッジでの処理により、システムの応答遅延を大幅
158158

159159
#### 準備
160160

161-
- Goバージョン >= 1.23
161+
- Goバージョン >= 1.24
162162

163163
#### コンパイル
164164

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Check out the [latest document](https://ekuiper.org/docs/en/latest/) in official
166166

167167
#### Preparation
168168

169-
- Go version >= 1.23
169+
- Go version >= 1.24
170170

171171
#### Compile
172172

contract/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/lf-edge/ekuiper/contract/v2
22

3-
go 1.23.4
3+
go 1.24.1

deploy/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG GO_VERSION=1.23.4
15+
ARG GO_VERSION=1.24.1
1616
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-alpine AS builder
1717

1818
COPY . /go/kuiper

deploy/docker/Dockerfile-alpine-python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG GO_VERSION=1.23.4
15+
ARG GO_VERSION=1.24.1
1616
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-alpine AS builder
1717

1818
COPY . /go/kuiper

0 commit comments

Comments
 (0)