@ossy/deployment-tools 0.0.22 → 0.0.23

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/dist/index.js CHANGED
@@ -60881,7 +60881,7 @@ class AwsCredentialsClient {
60881
60881
  .then(webIdentityToken => stsClient.send(new client_sts_dist_cjs.AssumeRoleWithWebIdentityCommand({
60882
60882
  RoleArn: `arn:aws:iam::${awsAccountId}:role/${roleToAssume}`,
60883
60883
  RoleSessionName: 'GitHubActions',
60884
- DurationSeconds: 5 * 60,
60884
+ DurationSeconds: 15 * 60,
60885
60885
  WebIdentityToken: webIdentityToken
60886
60886
  })))
60887
60887
  .then(responseData => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/deployment-tools",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "description": "Collection of scripts and tools to aid deployment of containers and static files",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -10,7 +10,7 @@ export class AwsCredentialsClient {
10
10
  .then(webIdentityToken => stsClient.send(new AssumeRoleWithWebIdentityCommand({
11
11
  RoleArn: `arn:aws:iam::${awsAccountId}:role/${roleToAssume}`,
12
12
  RoleSessionName: 'GitHubActions',
13
- DurationSeconds: 5 * 60,
13
+ DurationSeconds: 15 * 60,
14
14
  WebIdentityToken: webIdentityToken
15
15
  })))
16
16
  .then(responseData => ({