Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

chore: Update to the latest Helm 3 release #237

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
shellcheck -x scripts/install_plugin.sh
untagged-build:
docker:
- image: cimg/go:1.18
- image: cimg/go:1.22
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand All @@ -37,7 +37,7 @@ jobs:
no_output_timeout: 20m
tagged-build:
docker:
- image: cimg/go:1.18
- image: cimg/go:1.22
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ $ kubectl get configmap -n kube-system -l "OWNER=TILLER" \

If you would like to handle the build yourself, this is the recommended way to do it.

You must first have [Go v1.18](http://golang.org) installed, and then you run:
You must first have [Go v1.22](http://golang.org) installed, and then you run:

```console
$ git clone git@github.com:helm/helm-2to3.git
Expand Down
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module github.com/helm/helm-2to3

go 1.18
go 1.22

require (
github.com/golang/protobuf v1.5.3
github.com/golang/protobuf v1.5.4
github.com/maorfr/helm-plugin-utils v0.6.0
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.5.0
github.com/spf13/cobra v1.8.0
github.com/spf13/pflag v1.0.5
helm.sh/helm/v3 v3.10.3
k8s.io/apimachinery v0.25.2
helm.sh/helm/v3 v3.15.3
k8s.io/apimachinery v0.30.0
k8s.io/helm v2.17.0+incompatible
)

Expand Down