Skip to content

Commit f6e7b2c

Browse files
authored
Use Go 1.24 (#212)
/cherry-pick Signed-off-by: 1gtm <[email protected]>
1 parent 866f7dd commit f6e7b2c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
name: Build
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- name: Set up Go 1.23
21+
- name: Set up Go 1.24
2222
uses: actions/setup-go@v5
2323
with:
24-
go-version: '1.23'
24+
go-version: '1.24'
2525
id: go
2626

2727
- name: Check out code into the Go module directory

.github/workflows/update-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
name: Build
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- name: Set up Go 1.23
18+
- name: Set up Go 1.24
1919
uses: actions/setup-go@v5
2020
with:
21-
go-version: '1.23'
21+
go-version: '1.24'
2222
id: go
2323

2424
- uses: actions/checkout@v4

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) windows/amd64 darwin/amd64 darwin/arm64
5353
OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS))
5454
ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
5555

56-
GO_VERSION ?= 1.23
56+
GO_VERSION ?= 1.24
5757
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
5858

5959
RESTIC_VER := 0.17.3

0 commit comments

Comments
 (0)