diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e48f645d5..706c8650a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,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: Check out code into the Go module directory diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml index 3ae12154d..30a77ac37 100644 --- a/.github/workflows/update-docs.yml +++ b/.github/workflows/update-docs.yml @@ -16,10 +16,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 - uses: actions/checkout@v4 diff --git a/Makefile b/Makefile index 1ff5365c4..d66042089 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,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) TEST_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)-stash