This is an automated email from the ASF dual-hosted git repository. kezhenxu94 pushed a commit to branch gover in repository https://gitbox.apache.org/repos/asf/skywalking-swck.git
commit 55432865533b9ce1d4911fff72ee3de67a163f34 Author: kezhenxu94 <[email protected]> AuthorDate: Thu Apr 24 17:25:44 2025 +0800 build(go): bump up to go 1.24 --- .github/workflows/go.yml | 28 ++++++++++++++-------------- adapter/Dockerfile | 2 +- adapter/go.mod | 4 +--- operator/Dockerfile | 2 +- operator/go.mod | 4 +--- 5 files changed, 18 insertions(+), 22 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c79b0c6..e45d422 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -34,7 +34,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' - name: Check out code into the Go module directory uses: actions/checkout@v4 - name: Check License @@ -48,7 +48,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' - name: Check out code into the Go module directory uses: actions/checkout@v4 - name: Build @@ -62,7 +62,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -92,7 +92,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -107,7 +107,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -122,7 +122,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -143,7 +143,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -158,7 +158,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -173,7 +173,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -188,7 +188,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -203,7 +203,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -218,7 +218,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 @@ -233,7 +233,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' id: go - name: Check out code into the Go module directory uses: actions/checkout@v4 diff --git a/adapter/Dockerfile b/adapter/Dockerfile index a812b49..46eb73f 100644 --- a/adapter/Dockerfile +++ b/adapter/Dockerfile @@ -14,7 +14,7 @@ # limitations under the License. # Build the manager binary -FROM golang:1.23 as builder +FROM golang:1.24 as builder WORKDIR /workspace # Copy the Go Modules manifests diff --git a/adapter/go.mod b/adapter/go.mod index 2400cf2..1ebbcb5 100644 --- a/adapter/go.mod +++ b/adapter/go.mod @@ -1,8 +1,6 @@ module github.com/apache/skywalking-swck/adapter -go 1.23.0 - -toolchain go1.23.6 +go 1.24.2 require ( github.com/apache/skywalking-cli v0.0.0-20210209032327-04a0ce08990f diff --git a/operator/Dockerfile b/operator/Dockerfile index 4fc2320..7fe6ac1 100644 --- a/operator/Dockerfile +++ b/operator/Dockerfile @@ -14,7 +14,7 @@ # limitations under the License. # Build the manager binary -FROM golang:1.23 as builder +FROM golang:1.24 as builder WORKDIR /workspace # Copy the Go Modules manifests diff --git a/operator/go.mod b/operator/go.mod index a53b76d..1f2b905 100644 --- a/operator/go.mod +++ b/operator/go.mod @@ -1,8 +1,6 @@ module github.com/apache/skywalking-swck/operator -go 1.23.0 - -toolchain go1.23.4 +go 1.24.2 require ( github.com/Masterminds/sprig/v3 v3.3.0
