mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 09:40:17 +08:00
Merge branch 'main' into angelapwen/deprecate-action-v2
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"bundleVersion": "codeql-bundle-v2.20.0",
|
||||
"cliVersion": "2.20.0",
|
||||
"priorBundleVersion": "codeql-bundle-v2.19.4",
|
||||
"priorCliVersion": "2.19.4"
|
||||
"bundleVersion": "codeql-bundle-v2.20.1",
|
||||
"cliVersion": "2.20.1",
|
||||
"priorBundleVersion": "codeql-bundle-v2.20.0",
|
||||
"priorCliVersion": "2.20.0"
|
||||
}
|
||||
|
||||
@@ -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)}`);
|
||||
|
||||
Reference in New Issue
Block a user