Explicitly set value of registries and query_filters when undefined

Both are arrays, so we will use an empty array if they are undefined.
This commit is contained in:
Remco Vermeulen 2024-08-02 14:46:37 -07:00
parent ba3ac6f096
commit e6c9383ca6
3 changed files with 7 additions and 5 deletions

4
lib/init-action.js generated
View file

@ -112,8 +112,8 @@ async function sendCompletedStatusReport(startedAt, config, toolsDownloadDuratio
trap_cache_languages: Object.keys(config.trapCaches).join(","),
trap_cache_download_size_bytes: Math.round(await (0, trap_caching_1.getTotalCacheSize)(config.trapCaches, logger)),
trap_cache_download_duration_ms: Math.round(config.trapCacheDownloadTime),
query_filters: JSON.stringify(config.originalUserInput["query-filters"]),
registries: JSON.stringify(configUtils.parseRegistriesWithoutCredentials((0, actions_util_1.getOptionalInput)("registries"))),
query_filters: JSON.stringify(config.originalUserInput["query-filters"] ?? []),
registries: JSON.stringify(configUtils.parseRegistriesWithoutCredentials((0, actions_util_1.getOptionalInput)("registries")) ?? []),
};
await (0, status_report_1.sendStatusReport)({
...initWithConfigStatusReport,

File diff suppressed because one or more lines are too long