From d48c2a5e569081b58a7854cc91e79fa3550a6760 Mon Sep 17 00:00:00 2001 From: 1gtm <1gtm@appscode.com> Date: Fri, 15 Aug 2025 07:22:55 +0000 Subject: [PATCH] Use Go 1.25 Signed-off-by: 1gtm <1gtm@appscode.com> --- .github/workflows/ci.yml | 4 ++-- Dockerfile.dbg | 2 +- Makefile | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8afce0df..98a8d857 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,10 @@ jobs: runs-on: ubuntu-22.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 - uses: actions/checkout@v4 diff --git a/Dockerfile.dbg b/Dockerfile.dbg index 05fc89a5..79b7dfc8 100644 --- a/Dockerfile.dbg +++ b/Dockerfile.dbg @@ -12,7 +12,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 a8cce8e7..ec2aac26 100644 --- a/Makefile +++ b/Makefile @@ -77,9 +77,9 @@ 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.11.0 +CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.13.0 OUTBIN = bin/$(BIN)-$(OS)-$(ARCH) ifeq ($(OS),windows)