Skip to content

Commit a00ce52

Browse files
committed
chore: bump go version to 1.22
Signed-off-by: peefy <[email protected]>
1 parent 590349c commit a00ce52

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ curl -L $TARBALL_URL | tar -C $(helm home)/plugins -xzv
3636

3737
#### Prerequisites
3838

39-
+ GoLang 1.21+
39+
+ GoLang 1.22+
4040

4141
Make sure you do not have a version of `helm-kcl` installed. You can remove it by running the command.
4242

@@ -143,7 +143,7 @@ spec:
143143
144144
### Prerequisites
145145
146-
+ GoLang 1.21+
146+
+ GoLang 1.22+
147147
148148
```shell
149149
git clone https://github.com/kcl-lang/helm-kcl.git

makefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,14 @@ test:
5151

5252
.PHONY: bootstrap
5353
bootstrap:
54-
go mod download
55-
command -v golint || GO111MODULE=off go get -u golang.org/x/lint/golint
54+
go mod tidy
5655

5756
.PHONY: docker-run-release
5857
docker-run-release: export pkg=/go/src/github.com/kcl-lang/helm-kcl
5958
docker-run-release:
6059
git checkout main
6160
git push
62-
docker run -it --rm -e GITHUB_TOKEN -v $(shell pwd):$(pkg) -w $(pkg) golang:1.21 make bootstrap release
61+
docker run -it --rm -e GITHUB_TOKEN -v $(shell pwd):$(pkg) -w $(pkg) golang:1.22 make bootstrap release
6362

6463
.PHONY: dist
6564
dist: export COPYFILE_DISABLE=1 #teach OSX tar to not put ._* files in tar archive

0 commit comments

Comments
 (0)