We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f65a6e commit 51c0ab3Copy full SHA for 51c0ab3
.github/workflows/ci.yml
@@ -18,10 +18,10 @@ jobs:
18
name: Build
19
runs-on: ubuntu-24.04
20
steps:
21
- - name: Set up Go 1.23
+ - name: Set up Go 1.24
22
uses: actions/setup-go@v5
23
with:
24
- go-version: '1.23'
+ go-version: '1.24'
25
id: go
26
27
- name: Check out code into the Go module directory
Makefile
@@ -53,7 +53,7 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) darwin/amd64 darwin/arm64
53
OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS))
54
ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
55
56
-GO_VERSION ?= 1.23
+GO_VERSION ?= 1.24
57
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
58
59
OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)
0 commit comments