From 12a0d47ef93099aed26c8244eec5614608037dc7 Mon Sep 17 00:00:00 2001 From: Barry Gordon Date: Wed, 20 Oct 2021 12:34:15 +0100 Subject: [PATCH] Wrap image pull in a group --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index fe697f6..28dffb4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -56,9 +56,8 @@ export async function run(context: Context): Promise { params.workingDirectory ) + core.startGroup('Pulling updater images') try { - core.info('Pulling updater images') - await ImageService.pull(UPDATER_IMAGE_NAME) await ImageService.pull(PROXY_IMAGE_NAME) } catch (error) { @@ -67,6 +66,7 @@ export async function run(context: Context): Promise { await failJob(apiClient, error, DependabotErrorType.Image) return } + core.endGroup() try { core.info('Starting update process')