mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 22:30:44 +00:00
Add proxy_binary input to start-proxy Action
This allows a custom binary to be used. Mainly for testing.
This commit is contained in:
@@ -119,7 +119,9 @@ async function runWrapper() {
|
||||
};
|
||||
|
||||
// Start the Proxy
|
||||
const proxyBin = await getProxyBinaryPath();
|
||||
const proxyBin =
|
||||
actionsUtil.getOptionalInput("proxy_binary") ??
|
||||
(await getProxyBinaryPath());
|
||||
await startProxy(proxyBin, proxyConfig, proxyLogFilePath, logger);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user