diff --git a/lib/analyze-action.js b/lib/analyze-action.js index f8d825858..03f16d8f4 100644 --- a/lib/analyze-action.js +++ b/lib/analyze-action.js @@ -91150,6 +91150,7 @@ async function uploadDependencyCaches(codeql, features, config, logger) { logger ); if (patterns === void 0) { + status.push({ language, result: "no-hash" /* NoHash */ }); continue; } const size = await getTotalCacheSize( diff --git a/src/dependency-caching.ts b/src/dependency-caching.ts index f42ab4d45..6af3bf21d 100644 --- a/src/dependency-caching.ts +++ b/src/dependency-caching.ts @@ -357,6 +357,7 @@ export async function uploadDependencyCaches( logger, ); if (patterns === undefined) { + status.push({ language, result: CacheStoreResult.NoHash }); continue; }