Skip to content

Commit

Permalink
feat: upgrade go 1.23.4 (#3484)
Browse files Browse the repository at this point in the history
Signed-off-by: Song Gao <[email protected]>
  • Loading branch information
Yisaer authored Dec 27, 2024
1 parent f5534b6 commit d41a893
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
golang:
- 1.23.1
- 1.23.4
arch: ${{fromJson(needs.prepare.outputs.arch)}}
os:
- debian
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: '1.23.1'
go-version: '1.23.4'
- name: prepare
run: |
brew install zip unzip gnu-sed zmq
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- "-slim-python"
- "-full"
golang:
- 1.23.1
- 1.23.4

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
- [ debian, "slim" ]
- [ alpine, "alpine" ]
golang:
- 1.23.1
- 1.23.4
exclude:
- arch: linux/arm/v7
- os: [ alpine,"alpine" ]
Expand Down
2 changes: 1 addition & 1 deletion contract/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/lf-edge/ekuiper/contract/v2

go 1.23.1
go 1.23.4
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GO_VERSION=1.23.1
ARG GO_VERSION=1.23.4
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-alpine AS builder

COPY . /go/kuiper
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-alpine-python
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GO_VERSION=1.23.1
ARG GO_VERSION=1.23.4
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-alpine AS builder

COPY . /go/kuiper
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GO_VERSION=1.23.1
ARG GO_VERSION=1.23.4
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-debian AS builder

COPY . /go/kuiper
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-full
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GO_VERSION=1.23.1
ARG GO_VERSION=1.23.4
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-debian AS builder

COPY . /go/kuiper
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-kubernetes-tool
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.23.1-alpine AS builder
FROM golang:1.23.4-alpine AS builder

COPY . /go/kuiper

Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-slim
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GO_VERSION=1.23.1
ARG GO_VERSION=1.23.4
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-debian AS builder

COPY . /go/kuiper
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-slim-python
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GO_VERSION=1.23.1
ARG GO_VERSION=1.23.4
FROM ghcr.io/lf-edge/ekuiper/base:$GO_VERSION-debian AS builder

COPY . /go/kuiper
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -383,4 +383,4 @@ replace (
google.golang.org/genproto/googleapis/rpc => google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094
)

go 1.23.1
go 1.23.4
4 changes: 2 additions & 2 deletions go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
go 1.23.1
go 1.23.4

toolchain go1.23.1
toolchain go1.23.4

use (
.
Expand Down
2 changes: 1 addition & 1 deletion sdk/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/lf-edge/ekuiper/sdk/go

go 1.23.1
go 1.23.4

require (
github.com/keepeye/logrus-filename v0.0.0-20190711075016-ce01a4391dd1
Expand Down
4 changes: 2 additions & 2 deletions sdk/go/go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
go 1.23.1
go 1.23.4

toolchain go1.23.1
toolchain go1.23.4

use (
.
Expand Down
2 changes: 1 addition & 1 deletion tools/kubernetes/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ require (
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)

go 1.23.1
go 1.23.4

0 comments on commit d41a893

Please sign in to comment.