Skip to content

Commit d41a893

Browse files
authored
feat: upgrade go 1.23.4 (#3484)
Signed-off-by: Song Gao <disxiaofei@163.com>
1 parent f5534b6 commit d41a893

File tree

14 files changed

+19
-19
lines changed

14 files changed

+19
-19
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.1
36+
- 1.23.4
3737
arch: ${{fromJson(needs.prepare.outputs.arch)}}
3838
os:
3939
- debian
@@ -81,7 +81,7 @@ jobs:
8181
fetch-depth: 0
8282
- uses: actions/setup-go@v5
8383
with:
84-
go-version: '1.23.1'
84+
go-version: '1.23.4'
8585
- name: prepare
8686
run: |
8787
brew install zip unzip gnu-sed zmq
@@ -119,7 +119,7 @@ jobs:
119119
- "-slim-python"
120120
- "-full"
121121
golang:
122-
- 1.23.1
122+
- 1.23.4
123123

124124
steps:
125125
- uses: actions/checkout@v4
@@ -213,7 +213,7 @@ jobs:
213213
- [ debian, "slim" ]
214214
- [ alpine, "alpine" ]
215215
golang:
216-
- 1.23.1
216+
- 1.23.4
217217
exclude:
218218
- arch: linux/arm/v7
219219
- os: [ alpine,"alpine" ]

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.1
3+
go 1.23.4

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.1
15+
ARG GO_VERSION=1.23.4
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.1
15+
ARG GO_VERSION=1.23.4
1616
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-alpine AS builder
1717

1818
COPY . /go/kuiper

deploy/docker/Dockerfile-dev

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.1
15+
ARG GO_VERSION=1.23.4
1616
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-debian AS builder
1717

1818
COPY . /go/kuiper

deploy/docker/Dockerfile-full

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.1
15+
ARG GO_VERSION=1.23.4
1616
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-debian AS builder
1717

1818
COPY . /go/kuiper

deploy/docker/Dockerfile-kubernetes-tool

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-
FROM golang:1.23.1-alpine AS builder
15+
FROM golang:1.23.4-alpine AS builder
1616

1717
COPY . /go/kuiper
1818

deploy/docker/Dockerfile-slim

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.1
15+
ARG GO_VERSION=1.23.4
1616
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-debian AS builder
1717

1818
COPY . /go/kuiper

deploy/docker/Dockerfile-slim-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.1
15+
ARG GO_VERSION=1.23.4
1616
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-debian AS builder
1717

1818
COPY . /go/kuiper

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,4 +383,4 @@ replace (
383383
google.golang.org/genproto/googleapis/rpc => google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094
384384
)
385385

386-
go 1.23.1
386+
go 1.23.4

0 commit comments

Comments
 (0)