From 1bb7811f53521df3c8ae653de9edd96f3dacdf94 Mon Sep 17 00:00:00 2001 From: 1gtm <1gtm@appscode.com> Date: Wed, 14 Aug 2024 08:19:13 +0000 Subject: [PATCH] Use Go 1.23 Signed-off-by: 1gtm <1gtm@appscode.com> --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/release-tracker.yml | 2 +- .github/workflows/release.yml | 2 +- Makefile | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9e341d..2f3a38f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,12 +16,12 @@ concurrency: jobs: build: name: Build - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - - name: Set up Go 1.22 + - name: Set up Go 1.23 uses: actions/setup-go@v1 with: - go-version: '1.22' + go-version: '1.23' id: go - uses: actions/checkout@v1 @@ -45,7 +45,7 @@ jobs: kubernetes: name: Kubernetes - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest needs: build strategy: matrix: diff --git a/.github/workflows/release-tracker.yml b/.github/workflows/release-tracker.yml index 781d775..129e61e 100644 --- a/.github/workflows/release-tracker.yml +++ b/.github/workflows/release-tracker.yml @@ -9,7 +9,7 @@ concurrency: cancel-in-progress: true jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7f3dda..86fa055 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ concurrency: jobs: build: name: Build - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory uses: actions/checkout@v1 diff --git a/Makefile b/Makefile index 642c8cf..4b4ed83 100644 --- a/Makefile +++ b/Makefile @@ -54,9 +54,9 @@ ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH)) BASEIMAGE_PROD ?= gcr.io/distroless/static-debian12 BASEIMAGE_DBG ?= debian:bookworm -GO_VERSION ?= 1.22 +GO_VERSION ?= 1.23 BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION) -CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.5.1 +CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.11.0 OUTBIN = bin/$(OS)_$(ARCH)/$(BIN) ifeq ($(OS),windows)