Skip to content

Commit

Permalink
Wrap image pull in a group
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry Gordon committed Oct 20, 2021
1 parent a91c32a commit 12a0d47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ export async function run(context: Context): Promise<void> {
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) {
Expand All @@ -67,6 +66,7 @@ export async function run(context: Context): Promise<void> {
await failJob(apiClient, error, DependabotErrorType.Image)
return
}
core.endGroup()

try {
core.info('Starting update process')
Expand Down

0 comments on commit 12a0d47

Please sign in to comment.