From 0a7685a47e40f53d6392144b62ca474b68a9dbf2 Mon Sep 17 00:00:00 2001 From: 1gtm <1gtm@appscode.com> Date: Fri, 15 Aug 2025 04:53:20 +0000 Subject: [PATCH] Use Go 1.25 Signed-off-by: 1gtm <1gtm@appscode.com> --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- Dockerfile.dbg | 2 +- Makefile | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 217c4b8d..4ab5f606 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,10 +18,10 @@ jobs: name: Build runs-on: ubuntu-24.04 steps: - - name: Set up Go 1.24 + - name: Set up Go 1.25 uses: actions/setup-go@v5 with: - go-version: '1.24' + go-version: '1.25' id: go - name: Use Node.js 20.x diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce678399..ee76419c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,10 +17,10 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Set up Go 1.24 + - name: Set up Go 1.25 uses: actions/setup-go@v5 with: - go-version: '1.24' + go-version: '1.25' id: go - name: Prepare git diff --git a/Dockerfile.dbg b/Dockerfile.dbg index 970365cf..a912e22c 100644 --- a/Dockerfile.dbg +++ b/Dockerfile.dbg @@ -26,7 +26,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ghcr.io/appscode/dlv:1.24 +FROM ghcr.io/appscode/dlv:1.25 FROM {ARG_FROM} diff --git a/Makefile b/Makefile index 9cd1cbd1..f1dce80a 100644 --- a/Makefile +++ b/Makefile @@ -90,7 +90,7 @@ TAG := $(VERSION)_$(OS)_$(ARCH) TAG_PROD := $(TAG) TAG_DBG := $(VERSION)-dbg_$(OS)_$(ARCH) -GO_VERSION ?= 1.24 +GO_VERSION ?= 1.25 BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION) CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.13.0