Skip to content

Commit efe055d

Browse files
Bump versions (#46)
1 parent 539a0c1 commit efe055d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

dist/index.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15751,7 +15751,7 @@ exports.visitAsync = visitAsync;
1575115751
/***/ ((module) => {
1575215752

1575315753
"use strict";
15754-
module.exports = JSON.parse('{"name":"auth","version":"2.0.1","license":"Apache-2.0","repository":"https://github.com/teleport-actions/auth.git","scripts":{"build":"ncc build ./src/index.ts -o dist"},"dependencies":{"@actions/core":"^1.10.0","@actions/tool-cache":"^2.0.1"},"private":true,"devDependencies":{"@types/node":"^20.11.16"}}');
15754+
module.exports = JSON.parse('{"name":"auth","version":"2.0.2","license":"Apache-2.0","repository":"https://github.com/teleport-actions/auth.git","scripts":{"build":"ncc build ./src/index.ts -o dist"},"dependencies":{"@actions/core":"^1.10.0","@actions/tool-cache":"^2.0.1"},"private":true,"devDependencies":{"@types/node":"^20.11.16"}}');
1575515755

1575615756
/***/ })
1575715757

@@ -15947,6 +15947,12 @@ function baseEnvFromSharedInputs(inputs, name, version) {
1594715947
env['TELEPORT_ANONYMOUS_TELEMETRY'] = inputs.anonymousTelemetry ? '1' : '0';
1594815948
env['_TBOT_TELEMETRY_HELPER'] = name;
1594915949
env['_TBOT_TELEMETRY_HELPER_VERSION'] = version;
15950+
// Some environment variables are set by our actions and can then end up
15951+
// being used by a second call to our actions. This causes an error as both
15952+
// variables for proxy and auth addr can be set and tbot rejects this. Since
15953+
// we're explicitly configuring tbot, we can remove these variables.
15954+
delete env['TELEPORT_PROXY'];
15955+
delete env['TELEPORT_AUTH_SERVER'];
1595015956
return env;
1595115957
}
1595215958
async function execute(configPath, env) {

0 commit comments

Comments
 (0)