mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
* chore: upgrade helm to most recent version (v3.10.3) Signed-off-by: Justin Marquis <34fathombelow@protonmail.com> * Retrigger CI pipeline Signed-off-by: Justin Marquis <34fathombelow@protonmail.com> Signed-off-by: Justin Marquis <34fathombelow@protonmail.com> Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
18 lines
763 B
Bash
18 lines
763 B
Bash
#!/bin/sh
|
|
###############################################################################
|
|
# This file defines the versions of the tools that are installed in the CI
|
|
# toolchain and the Docker image.
|
|
#
|
|
# Updating a tool's version here is not enough, you will need to create a
|
|
# checksum file in ./hack/installers/checksums matching the name of the
|
|
# downloaded binary with a ".sha256" suffix appended, containing the proper
|
|
# SHA256 sum of the binary.
|
|
#
|
|
# Use ./hack/installers/checksums/add-helm-checksums.sh and
|
|
# add-kustomize-checksums.sh to help download checksums.
|
|
###############################################################################
|
|
helm3_version=3.10.3
|
|
kubectl_version=1.17.8
|
|
kubectx_version=0.6.3
|
|
kustomize4_version=4.5.7
|
|
protoc_version=3.17.3
|