Merge branch 'main' into update-bundle/codeql-bundle-v2.20.1

This commit is contained in:
Dave Bartolomeo 2025-01-09 11:38:32 -05:00 committed by GitHub
commit 1aa16c2c36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 4 deletions

View file

@ -154,7 +154,10 @@ async function startProxy(binPath, config, logFilePath, logger) {
core.setOutput("proxy_ca_certificate", config.ca.cert);
const registry_urls = config.all_credentials
.filter((credential) => credential.url !== undefined)
.map((credential) => credential.url);
.map((credential) => ({
type: credential.type,
url: credential.url,
}));
core.setOutput("proxy_urls", JSON.stringify(registry_urls));
}
catch (error) {

File diff suppressed because one or more lines are too long