Skip to content

Commit fa256f8

Browse files
committed
print info message for build summary support checks
Signed-off-by: CrazyMax <[email protected]>
1 parent 8cea75c commit fa256f8

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
@@ -184,13 +184,13 @@ actionsToolkit.run(
184184
if (!buildSummaryEnabled()) {
185185
core.info('Build summary disabled');
186186
} else if (GitHub.isGHES) {
187-
core.warning('Build summary is not yet supported on GHES');
187+
core.info('Build summary is not yet supported on GHES');
188188
} else if (!(await toolkit.buildx.versionSatisfies('>=0.13.0'))) {
189-
core.warning('Build summary requires Buildx >= 0.13.0');
189+
core.info('Build summary requires Buildx >= 0.13.0');
190190
} else if (builder && builder.driver === 'cloud') {
191-
core.warning('Build summary is not yet supported with Docker Build Cloud');
191+
core.info('Build summary is not yet supported with Docker Build Cloud');
192192
} else if (refs.length == 0) {
193-
core.warning('Build summary requires at least one build reference');
193+
core.info('Build summary requires at least one build reference');
194194
} else {
195195
core.info('Build summary supported!');
196196
stateHelper.setSummarySupported();

0 commit comments

Comments
 (0)