@vm0/runner 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +4 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -9147,6 +9147,9 @@ function buildEnvironmentVariables(context, apiUrl) {
|
|
|
9147
9147
|
envVars[key] = value;
|
|
9148
9148
|
}
|
|
9149
9149
|
}
|
|
9150
|
+
if (context.experimentalNetworkSecurity) {
|
|
9151
|
+
envVars.NODE_EXTRA_CA_CERTS = "/usr/local/share/ca-certificates/vm0-proxy-ca.crt";
|
|
9152
|
+
}
|
|
9150
9153
|
return envVars;
|
|
9151
9154
|
}
|
|
9152
9155
|
var ENV_JSON_PATH = "/tmp/vm0-env.json";
|
|
@@ -9644,7 +9647,7 @@ var statusCommand = new Command2("status").description("Check runner connectivit
|
|
|
9644
9647
|
});
|
|
9645
9648
|
|
|
9646
9649
|
// src/index.ts
|
|
9647
|
-
var version = true ? "2.3.
|
|
9650
|
+
var version = true ? "2.3.1" : "0.1.0";
|
|
9648
9651
|
program.name("vm0-runner").version(version).description("Self-hosted runner for VM0 agents");
|
|
9649
9652
|
program.addCommand(startCommand);
|
|
9650
9653
|
program.addCommand(statusCommand);
|