1
0
mirror of https://github.com/helm/chart-testing.git synced 2026-02-05 09:45:14 +01:00

Upgrade go to 1.22 and housekeeping (#641)

* group dependabot updates

Signed-off-by: cpanato <ctadeu@gmail.com>

* upgrade to go1.22

Signed-off-by: cpanato <ctadeu@gmail.com>

* fix lints

Signed-off-by: cpanato <ctadeu@gmail.com>

* update alpine and helm

Signed-off-by: cpanato <ctadeu@gmail.com>

* go mod tidy

Signed-off-by: cpanato <ctadeu@gmail.com>

* update goreleaser deprecated flags and config

Signed-off-by: cpanato <ctadeu@gmail.com>

* update dockerfile

Signed-off-by: cpanato <ctadeu@gmail.com>

---------

Signed-off-by: cpanato <ctadeu@gmail.com>
This commit is contained in:
Carlos Tadeu Panato Junior
2024-04-21 09:13:08 +02:00
committed by GitHub
parent a9bb6ac92a
commit 15a8beb256
9 changed files with 53 additions and 32 deletions

View File

@@ -901,7 +901,7 @@ func (t *Testing) ValidateMaintainers(chart *Chart) error {
func (t *Testing) PrintEventsPodDetailsAndLogs(namespace string, selector string) {
util.PrintDelimiterLineToWriter(os.Stdout, "=")
t.printDetails(namespace, "Events of namespace", ".", func(item string) error {
t.printDetails(namespace, "Events of namespace", ".", func(_ string) error {
return t.kubectl.GetEvents(namespace)
}, namespace)
@@ -920,7 +920,7 @@ func (t *Testing) PrintEventsPodDetailsAndLogs(namespace string, selector string
}
for _, pod := range pods {
t.printDetails(pod, "Description of pod", "~", func(item string) error {
t.printDetails(pod, "Description of pod", "~", func(_ string) error {
return t.kubectl.DescribePod(namespace, pod)
}, pod)