Skip to content

Commit ae2d4f9

Browse files
authored
Use Go 1.23 (#342)
/cherry-pick Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 604ef4f commit ae2d4f9

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 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
@@ -35,7 +35,7 @@ jobs:
3535
curl -fsSL -o yqq https://github.com/mikefarah/yq/releases/download/3.3.0/yq_linux_amd64
3636
chmod +x yqq
3737
sudo mv yqq /usr/local/bin/yqq
38-
pip3 install yq
38+
pipx install yq
3939
# install kubectl
4040
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.25.0/bin/linux/amd64/kubectl
4141
chmod +x ./kubectl
@@ -57,7 +57,7 @@ jobs:
5757
5858
kubernetes:
5959
name: Kubernetes
60-
runs-on: ubuntu-20.04
60+
runs-on: ubuntu-24.04
6161
needs: build
6262
strategy:
6363
matrix:

.github/workflows/publish-oci.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-latest
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/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

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
6161
BASEIMAGE_PROD ?= gcr.io/distroless/static-debian12
6262
BASEIMAGE_DBG ?= debian:bookworm
6363

64-
GO_VERSION ?= 1.22
64+
GO_VERSION ?= 1.23
6565
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
66-
CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.8.0
66+
CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.11.0
6767

6868
OUTBIN = bin/$(OS)_$(ARCH)/$(BIN)
6969
ifeq ($(OS),windows)

0 commit comments

Comments
 (0)