diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 702cf939..9d6afab1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,7 +31,7 @@ jobs: run: df -h - uses: golangci/golangci-lint-action@v9 with: - version: v2.6.2 + version: v2.11.4 tests: runs-on: ubuntu-latest diff --git a/pkg/helmexec/exec.go b/pkg/helmexec/exec.go index 4b061266..5af9add0 100644 --- a/pkg/helmexec/exec.go +++ b/pkg/helmexec/exec.go @@ -256,7 +256,7 @@ func (helm *execer) AddRepo(name, repository, cafile, certfile, keyfile, usernam if username != "" && password != "" { args = append(args, "--username", username, "--password-stdin") buffer := bytes.Buffer{} - buffer.Write([]byte(fmt.Sprintf("%s\n", password))) + fmt.Fprintf(&buffer, "%s\n", password) out, err = helm.execStdIn(args, map[string]string{}, &buffer) } else { out, err = helm.exec(args, map[string]string{}, nil) @@ -311,7 +311,7 @@ func (helm *execer) RegistryLogin(repository, username, password, caFile, certFi args = append(args, "--username", username, "--password-stdin") buffer := bytes.Buffer{} - buffer.Write([]byte(fmt.Sprintf("%s\n", password))) + fmt.Fprintf(&buffer, "%s\n", password) helm.logger.Info("Logging in to registry") out, err := helm.execStdIn(args, map[string]string{"HELM_EXPERIMENTAL_OCI": "1"}, &buffer)