Build update helm and go dependencies to latest versions #783
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates the Helm versions in the CI workflow and modernizes dependencies in the
go.mod
file. The most significant changes include upgrading Helm versions in the CI matrix, updating several Go module dependencies to newer versions, and removing unused or outdated dependencies.CI Workflow Updates:
.github/workflows/ci.yaml
fromv3.17.2
andv3.16.4
tov3.18.0
andv3.17.3
across all workflows to ensure compatibility with the latest Helm minor versions. [1] [2]Dependency Updates:
helm.sh/helm/v3
dependency ingo.mod
fromv3.17.3
tov3.18.0
.github.com/aryann/difflib
to a newer version (ff5ff6dc229b
) for better functionality.go.mod
, including upgrades togithub.com/Azure/go-ansiterm
(faa5f7b0171c
),github.com/BurntSushi/toml
(v1.5.0
),github.com/moby/term
(v0.5.2
), and others. [1] [2] [3]github.com/gorilla/mux
,go.opentelemetry.io/otel
, andgithub.com/prometheus/client_golang
to clean up thego.mod
file. [1] [2] [3]These changes improve compatibility with the latest tools and libraries while simplifying the dependency tree.