From fa256f8a0cf4762f54392e34241d4f72c4e39f61 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Tue, 13 Aug 2024 11:22:45 +0200 Subject: [PATCH] print info message for build summary support checks Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- src/main.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.ts b/src/main.ts index e93b947..fdae8e2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -184,13 +184,13 @@ actionsToolkit.run( if (!buildSummaryEnabled()) { core.info('Build summary disabled'); } else if (GitHub.isGHES) { - core.warning('Build summary is not yet supported on GHES'); + core.info('Build summary is not yet supported on GHES'); } else if (!(await toolkit.buildx.versionSatisfies('>=0.13.0'))) { - core.warning('Build summary requires Buildx >= 0.13.0'); + core.info('Build summary requires Buildx >= 0.13.0'); } else if (builder && builder.driver === 'cloud') { - core.warning('Build summary is not yet supported with Docker Build Cloud'); + core.info('Build summary is not yet supported with Docker Build Cloud'); } else if (refs.length == 0) { - core.warning('Build summary requires at least one build reference'); + core.info('Build summary requires at least one build reference'); } else { core.info('Build summary supported!'); stateHelper.setSummarySupported();