correct warning log line (#22)

This commit is contained in:
Aayush Shah 2024-11-18 11:36:53 -05:00 committed by GitHub
parent daa8a63bfa
commit 0488127ec0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ async function getBuilderAddr(inputs: context.Inputs, dockerfilePath: string): P
if (error.name === 'AbortError') {
return null;
}
core.warning(`Error in getRemoteBuilderAddr: ${(error as Error).message}`);
core.warning(`Error in getBuilderAddr: ${(error as Error).message}`);
throw error;
}