Bump the other group across 1 directory with 13 updates (#152)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bryce Lampe <bryce@pulumi.com>
This commit is contained in:
dependabot[bot]
2024-07-12 16:40:59 -07:00
committed by GitHub
parent 78057473ac
commit 724836b5ef
10 changed files with 271 additions and 523 deletions

View File

@@ -128,9 +128,10 @@ func (c *cli) Build(
_ = printer.Wait()
for _, w := range printer.Warnings() {
b := &bytes.Buffer{}
fmt.Fprint(b, fmt.Sprint(w.Short))
_, _ = b.Write(w.Short)
for _, d := range w.Detail {
fmt.Fprintf(b, "\n%s", d)
_ = b.WriteByte('\n')
_, _ = b.Write(d)
}
provider.GetLogger(ctx).Warning(b.String())
}