Skip to content

Commit

Permalink
bump up to v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Apr 27, 2022
1 parent 23046bb commit 0901b65
Show file tree
Hide file tree
Showing 10 changed files with 495 additions and 5 deletions.
3 changes: 3 additions & 0 deletions action/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ async function run() {
const providerEndpoint = core.getInput('provider-endpoint') || 'https://uw4qs7ndjj.execute-api.us-east-1.amazonaws.com/assume-role';
const useNodeId = core.getBooleanInput('use-node-id', required);
const obfuscateRepository = core.getInput('obfuscate-repository');
if (roleDurationSeconds <= 0 || roleDurationSeconds > 60 * 60) {
core.setFailed(`invalid role-duration-seconds ${roleDurationSeconds}, it should be from 1 to 3600`);
}
await assumeRole({
githubToken,
awsRegion,
Expand Down
4 changes: 4 additions & 0 deletions action/node_modules/@actions/core/lib/core.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions action/node_modules/@actions/core/lib/core.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion action/node_modules/@actions/core/lib/core.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

198 changes: 198 additions & 0 deletions action/node_modules/@actions/core/lib/markdown-summary.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0901b65

Please sign in to comment.