Skip to content

Commit be25d9f

Browse files
Bump versions (#40)
1 parent 806ca0e commit be25d9f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ inputs:
88
app:
99
description: Specify the name of the application in Teleport you wish to generate credentials for.
1010
required: true
11+
ca-pins:
12+
description: Specifies one or more trusted CAs to initially validate the identity of the Auth Server when connecting directly to it. This is not required for Teleport Cloud or when connecting via a Teleport Proxy
13+
required: false
1114
certificate-ttl:
1215
description: Specify the length that the generated credentials should be valid for. Defaults to "1h"
1316
required: false

dist/index.js

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

1248712487
"use strict";
12488-
module.exports = JSON.parse('{"name":"auth-application","version":"1.1.3","license":"Apache-2.0","repository":"https://github.com/teleport-actions/auth-application.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":"^18.8.2"}}');
12488+
module.exports = JSON.parse('{"name":"auth-application","version":"1.1.4","license":"Apache-2.0","repository":"https://github.com/teleport-actions/auth-application.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":"^18.8.2"}}');
1248912489

1249012490
/***/ })
1249112491

@@ -12628,11 +12628,13 @@ function getSharedInputs() {
1262812628
const token = core.getInput('token', { required: true });
1262912629
const certificateTTL = core.getInput('certificate-ttl');
1263012630
const anonymousTelemetry = stringToBool(core.getInput('anonymous-telemetry'));
12631+
const caPins = core.getMultilineInput('ca-pins');
1263112632
return {
1263212633
proxy,
1263312634
token,
1263412635
certificateTTL,
1263512636
anonymousTelemetry,
12637+
caPins,
1263612638
};
1263712639
}
1263812640
function baseConfigurationFromSharedInputs(inputs) {
@@ -12642,6 +12644,7 @@ function baseConfigurationFromSharedInputs(inputs) {
1264212644
onboarding: {
1264312645
join_method: 'github',
1264412646
token: inputs.token,
12647+
ca_pins: inputs.caPins,
1264512648
},
1264612649
storage: {
1264712650
// We use memory storage here so we avoid ever writing the bots more

0 commit comments

Comments
 (0)