Skip to content

Commit 3e151f3

Browse files
committed
Use Go 1.23
Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent fd25678 commit 3e151f3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ concurrency:
1616
jobs:
1717
build:
1818
name: Build
19-
runs-on: ubuntu-latest
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.yml

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

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS)
5454
OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS))
5555
ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
5656

57-
GO_VERSION ?= 1.22
57+
GO_VERSION ?= 1.23
5858
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
5959

6060
OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)

0 commit comments

Comments
 (0)