diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a687afb..2cc755cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,10 @@ jobs: steps: - uses: actions/checkout@v4 - - 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: Set up QEMU @@ -49,10 +49,10 @@ jobs: steps: - uses: actions/checkout@v4 - - 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: Create Kubernetes ${{ matrix.k8s }} cluster diff --git a/Dockerfile.dbg b/Dockerfile.dbg index 98611401..417b580f 100644 --- a/Dockerfile.dbg +++ b/Dockerfile.dbg @@ -13,7 +13,7 @@ # 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 e0ebc5d8..26b71d47 100644 --- a/Makefile +++ b/Makefile @@ -76,9 +76,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)