Merge branch 'main' into update-bundle/codeql-bundle-v2.20.1
This commit is contained in:
commit
1aa16c2c36
4 changed files with 10 additions and 4 deletions
|
|
@ -174,7 +174,10 @@ async function startProxy(
|
|||
|
||||
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) {
|
||||
core.setFailed(`start-proxy action failed: ${util.getErrorMessage(error)}`);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue