'Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.';
@ -60475,7 +60475,8 @@ function isCacheFeatureAvailable() {
returntrue;
}
if(isGhes()){
thrownewError('Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.');
core.warning('Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.');
returnfalse;
}
core.warning('The runner was not able to contact the cache service. Caching will be skipped');
@ -63148,7 +63148,8 @@ function isCacheFeatureAvailable() {
returntrue;
}
if(isGhes()){
thrownewError('Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.');
core.warning('Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.');
returnfalse;
}
core.warning('The runner was not able to contact the cache service. Caching will be skipped');
@ -62,9 +62,10 @@ export function isCacheFeatureAvailable(): boolean {
}
if(isGhes()){
thrownewError(
core.warning(
'Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.'