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 f37966a5..993fdc92 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 5100479f..f4dcf92e 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 3b20f027..c96c0327 100644 --- a/Makefile +++ b/Makefile @@ -71,9 +71,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)