From f6dda6fe796f7d651c44352bbd8af4089fd44d65 Mon Sep 17 00:00:00 2001 From: Peefy Date: Mon, 28 Oct 2024 20:17:54 +0800 Subject: [PATCH] chore: bump go version to 1.23 Signed-off-by: Peefy --- .github/workflows/ci.yaml | 2 +- README.md | 4 ++-- makefile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8ae0b05..f5c7a1f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,7 +2,7 @@ name: CI env: - VERSION_GO: '1.22' + VERSION_GO: '1.23' VERSION_HELM: 'v3.15.2' on: diff --git a/README.md b/README.md index de1a6aa..24c2387 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ curl -L $TARBALL_URL | tar -C $(helm home)/plugins -xzv #### Prerequisites -+ GoLang 1.22+ ++ GoLang 1.23+ Make sure you do not have a version of `helm-kcl` installed. You can remove it by running the command. @@ -143,7 +143,7 @@ spec: ### Prerequisites -+ GoLang 1.22+ ++ GoLang 1.23+ ```shell git clone https://github.com/kcl-lang/helm-kcl.git diff --git a/makefile b/makefile index 8ec33c0..9093de4 100644 --- a/makefile +++ b/makefile @@ -58,7 +58,7 @@ docker-run-release: export pkg=/go/src/github.com/kcl-lang/helm-kcl docker-run-release: git checkout main git push - docker run -it --rm -e GITHUB_TOKEN -v $(shell pwd):$(pkg) -w $(pkg) golang:1.22 make bootstrap release + docker run -it --rm -e GITHUB_TOKEN -v $(shell pwd):$(pkg) -w $(pkg) golang:1.23 make bootstrap release .PHONY: dist dist: export COPYFILE_DISABLE=1 #teach OSX tar to not put ._* files in tar archive