Skip to content

Commit 23c657a

Browse files
committed
print info message for build summary support checks
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
1 parent 16ebe77 commit 23c657a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -162,13 +162,13 @@ actionsToolkit.run(
162162
if (!buildSummaryEnabled()) {
163163
core.info('Build summary disabled');
164164
} else if (GitHub.isGHES) {
165-
core.warning('Build summary is not yet supported on GHES');
165+
core.info('Build summary is not yet supported on GHES');
166166
} else if (!(await toolkit.buildx.versionSatisfies('>=0.13.0'))) {
167-
core.warning('Build summary requires Buildx >= 0.13.0');
167+
core.info('Build summary requires Buildx >= 0.13.0');
168168
} else if (builder && builder.driver === 'cloud') {
169-
core.warning('Build summary is not yet supported with Docker Build Cloud');
169+
core.info('Build summary is not yet supported with Docker Build Cloud');
170170
} else if (!ref) {
171-
core.warning('Build summary requires a build reference');
171+
core.info('Build summary requires a build reference');
172172
} else {
173173
core.info('Build summary supported!');
174174
stateHelper.setSummarySupported();

0 commit comments

Comments
 (0)