diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2535caff..ffaf4065 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,10 @@ jobs: 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: Check out code into the Go module directory diff --git a/Makefile b/Makefile index 4a312dda..c8d74b40 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) darwin/amd64 OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS)) ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH)) -GO_VERSION ?= 1.24 +GO_VERSION ?= 1.25 BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION) OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)