Skip to content

Commit cf29420

Browse files
authored
Use Go 1.23 (#202)
/cherry-pick Signed-off-by: 1gtm <[email protected]>
1 parent 3a2104b commit cf29420

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ concurrency:
1616
jobs:
1717
build:
1818
name: Build
19-
runs-on: ubuntu-20.04
19+
runs-on: ubuntu-24.04
2020
steps:
21-
- name: Set up Go 1.22
21+
- name: Set up Go 1.23
2222
uses: actions/setup-go@v1
2323
with:
24-
go-version: '1.22'
24+
go-version: '1.23'
2525
id: go
2626

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

.github/workflows/release-tracker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515

1616
steps:
1717
- uses: actions/checkout@v1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
build:
1515
name: Build
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Check out code into the Go module directory
1919
uses: actions/checkout@v1

.github/workflows/update-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ concurrency:
1313
jobs:
1414
build:
1515
name: Build
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-24.04
1717
steps:
18-
- name: Set up Go 1.22
18+
- name: Set up Go 1.23
1919
uses: actions/setup-go@v1
2020
with:
21-
go-version: '1.22'
21+
go-version: '1.23'
2222
id: go
2323

2424
- uses: actions/checkout@v1

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.22
56+
GO_VERSION ?= 1.23
5757
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
5858

5959
RESTIC_VER := 0.13.1

0 commit comments

Comments
 (0)