mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-05-09 05:49:53 +02:00
Update dependency (#94)
Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
parent
ded55cf56a
commit
e85426e5e2
7 changed files with 1250 additions and 6630 deletions
|
@ -310,7 +310,9 @@ async function pullImageFromDocker(): Promise<ImageStorageCheckResult> {
|
|||
}
|
||||
}
|
||||
catch (err) {
|
||||
core.warning(err);
|
||||
if (err instanceof Error) {
|
||||
core.debug(err.message);
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
|
@ -340,7 +342,9 @@ async function checkImageInPodman(): Promise<ImageStorageCheckResult> {
|
|||
}
|
||||
}
|
||||
catch (err) {
|
||||
core.debug(err);
|
||||
if (err instanceof Error) {
|
||||
core.debug(err.message);
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
|
|
|
@ -54,7 +54,9 @@ export async function findFuseOverlayfsPath(): Promise<string | undefined> {
|
|||
fuseOverlayfsPath = await io.which("fuse-overlayfs");
|
||||
}
|
||||
catch (err) {
|
||||
core.debug(err);
|
||||
if (err instanceof Error) {
|
||||
core.debug(err.message);
|
||||
}
|
||||
}
|
||||
|
||||
return fuseOverlayfsPath;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue