mirror of
https://github.com/github/codeql-action.git
synced 2026-05-14 15:20:32 +00:00
Improve error message
This commit is contained in:
Generated
+1
-1
@@ -91666,7 +91666,7 @@ async function getEnabledVersionsWithOverlayBaseDatabases(defaultCliVersion, raw
|
||||
);
|
||||
} catch (e) {
|
||||
logger.warning(
|
||||
`While setting up CodeQL, was unable to list overlay-base databases in the Actions cache. Details: ${e}`
|
||||
`Could not list overlay-base databases in the Actions cache while choosing a default CodeQL CLI version, falling back to the highest enabled version. Details: ${getErrorMessage(e)}`
|
||||
);
|
||||
return [];
|
||||
}
|
||||
|
||||
Generated
+1
-1
@@ -132637,7 +132637,7 @@ async function getEnabledVersionsWithOverlayBaseDatabases(defaultCliVersion, raw
|
||||
);
|
||||
} catch (e) {
|
||||
logger.warning(
|
||||
`While setting up CodeQL, was unable to list overlay-base databases in the Actions cache. Details: ${e}`
|
||||
`Could not list overlay-base databases in the Actions cache while choosing a default CodeQL CLI version, falling back to the highest enabled version. Details: ${getErrorMessage(e)}`
|
||||
);
|
||||
return [];
|
||||
}
|
||||
|
||||
Generated
+1
-1
@@ -90595,7 +90595,7 @@ async function getEnabledVersionsWithOverlayBaseDatabases(defaultCliVersion, raw
|
||||
);
|
||||
} catch (e) {
|
||||
logger.warning(
|
||||
`While setting up CodeQL, was unable to list overlay-base databases in the Actions cache. Details: ${e}`
|
||||
`Could not list overlay-base databases in the Actions cache while choosing a default CodeQL CLI version, falling back to the highest enabled version. Details: ${getErrorMessage(e)}`
|
||||
);
|
||||
return [];
|
||||
}
|
||||
|
||||
Generated
+1
-1
@@ -88091,7 +88091,7 @@ async function getEnabledVersionsWithOverlayBaseDatabases(defaultCliVersion, raw
|
||||
);
|
||||
} catch (e) {
|
||||
logger.warning(
|
||||
`While setting up CodeQL, was unable to list overlay-base databases in the Actions cache. Details: ${e}`
|
||||
`Could not list overlay-base databases in the Actions cache while choosing a default CodeQL CLI version, falling back to the highest enabled version. Details: ${getErrorMessage(e)}`
|
||||
);
|
||||
return [];
|
||||
}
|
||||
|
||||
Generated
+1
-1
@@ -90698,7 +90698,7 @@ async function getEnabledVersionsWithOverlayBaseDatabases(defaultCliVersion, raw
|
||||
);
|
||||
} catch (e) {
|
||||
logger.warning(
|
||||
`While setting up CodeQL, was unable to list overlay-base databases in the Actions cache. Details: ${e}`
|
||||
`Could not list overlay-base databases in the Actions cache while choosing a default CodeQL CLI version, falling back to the highest enabled version. Details: ${getErrorMessage(e)}`
|
||||
);
|
||||
return [];
|
||||
}
|
||||
|
||||
Generated
+1
-1
@@ -91369,7 +91369,7 @@ async function getEnabledVersionsWithOverlayBaseDatabases(defaultCliVersion, raw
|
||||
);
|
||||
} catch (e) {
|
||||
logger.warning(
|
||||
`While setting up CodeQL, was unable to list overlay-base databases in the Actions cache. Details: ${e}`
|
||||
`Could not list overlay-base databases in the Actions cache while choosing a default CodeQL CLI version, falling back to the highest enabled version. Details: ${getErrorMessage(e)}`
|
||||
);
|
||||
return [];
|
||||
}
|
||||
|
||||
+2
-1
@@ -308,7 +308,8 @@ export async function getEnabledVersionsWithOverlayBaseDatabases(
|
||||
);
|
||||
} catch (e) {
|
||||
logger.warning(
|
||||
`While setting up CodeQL, was unable to list overlay-base databases in the Actions cache. Details: ${e}`,
|
||||
"Could not list overlay-base databases in the Actions cache while choosing a default " +
|
||||
`CodeQL CLI version, falling back to the highest enabled version. Details: ${util.getErrorMessage(e)}`,
|
||||
);
|
||||
return [];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user