This is an automated email from the ASF dual-hosted git repository.
liuhan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-satellite.git
The following commit(s) were added to refs/heads/main by this push:
new dd2168c chore(deps): bump up go (#218)
dd2168c is described below
commit dd2168ce2190cc6b2d1af9d8fc467a44f1d6ce4b
Author: kezhenxu94 <[email protected]>
AuthorDate: Tue Nov 11 12:33:19 2025 +0800
chore(deps): bump up go (#218)
---
.github/workflows/build-and-test.yaml | 2 +-
.github/workflows/e2e-istio.yaml | 4 ++--
docker/Dockerfile | 2 +-
go.mod | 2 +-
test/e2e/base/satellite/Dockerfile | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/build-and-test.yaml
b/.github/workflows/build-and-test.yaml
index c92c906..e17acd9 100644
--- a/.github/workflows/build-and-test.yaml
+++ b/.github/workflows/build-and-test.yaml
@@ -28,7 +28,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
- go-version: [ 1.24 ]
+ go-version: [ 1.25 ]
runner: [ ubuntu, windows ]
fail-fast: true
steps:
diff --git a/.github/workflows/e2e-istio.yaml b/.github/workflows/e2e-istio.yaml
index 0863e49..b59bf69 100644
--- a/.github/workflows/e2e-istio.yaml
+++ b/.github/workflows/e2e-istio.yaml
@@ -43,7 +43,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
- go-version: 1.24
+ go-version: 1.25
id: go
- uses: actions/checkout@v2
with:
@@ -75,7 +75,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
- go-version: 1.24
+ go-version: 1.25
id: go
- uses: actions/checkout@v2
with:
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 4fff895..734bc8e 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM golang:1.24 as build
+FROM golang:1.25 as build
ARG VERSION="latest"
ARG TARGETARCH
diff --git a/go.mod b/go.mod
index 07cd48a..18cbdf8 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/apache/skywalking-satellite
-go 1.24.6
+go 1.25
require (
github.com/Shopify/sarama v1.27.2
diff --git a/test/e2e/base/satellite/Dockerfile
b/test/e2e/base/satellite/Dockerfile
index 138bed0..466a04f 100644
--- a/test/e2e/base/satellite/Dockerfile
+++ b/test/e2e/base/satellite/Dockerfile
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM golang:1.24
+FROM golang:1.25
ADD . /satellite_code
WORKDIR /satellite_code