Skip to content

Commit 22d2876

Browse files
authored
Use Go 1.23 (#774)
Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 39e448d commit 22d2876

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
@@ -17,12 +17,12 @@ concurrency:
1717
jobs:
1818
build:
1919
name: Build
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-24.04
2121
steps:
22-
- name: Set up Go 1.22
22+
- name: Set up Go 1.23
2323
uses: actions/setup-go@v1
2424
with:
25-
go-version: '1.22'
25+
go-version: '1.23'
2626
id: go
2727

2828
- 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
@@ -12,7 +12,7 @@ concurrency:
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616

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

.github/workflows/release.yml

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

.github/workflows/update-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ concurrency:
1414
jobs:
1515
build:
1616
name: Build
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-24.04
1818
steps:
19-
- name: Set up Go 1.22
19+
- name: Set up Go 1.23
2020
uses: actions/setup-go@v1
2121
with:
22-
go-version: '1.22'
22+
go-version: '1.23'
2323
id: go
2424

2525
- 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
OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)

0 commit comments

Comments
 (0)