Skip to content

Commit 3bb5a06

Browse files
committed
Update to Node16
1 parent e0bcb7e commit 3bb5a06

File tree

5 files changed

+2063
-130
lines changed

5 files changed

+2063
-130
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.16.0
1+
lts/gallium

action.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
name: "invoke-aws-lambda"
2-
description: "Invoke AWS Lambda function"
1+
name: 'invoke-aws-lambda'
2+
description: 'Invoke AWS Lambda function'
33
branding:
44
icon: arrow-up-right
55
color: orange
66
inputs:
77
AWS_ACCESS_KEY_ID:
8-
description: "AWS_ACCESS_KEY_ID"
8+
description: 'AWS_ACCESS_KEY_ID'
99
required: true
1010
AWS_SECRET_ACCESS_KEY:
11-
description: "AWS_SECRET_ACCESS_KEY"
11+
description: 'AWS_SECRET_ACCESS_KEY'
1212
required: true
1313
AWS_SESSION_TOKEN:
14-
description: "AWS_SESSION_TOKEN"
14+
description: 'AWS_SESSION_TOKEN'
1515
required: false
1616
REGION:
17-
description: "region where the lambda has been created (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html)"
17+
description: 'region where the lambda has been created (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html)'
1818
required: false
1919
default: us-east-1
2020
FunctionName:
21-
description: "The name of the Lambda function, version, or alias"
21+
description: 'The name of the Lambda function, version, or alias'
2222
required: true
2323
InvocationType:
24-
description: "Choose from the following options: RequestResponse, Event, DryRun"
24+
description: 'Choose from the following options: RequestResponse, Event, DryRun'
2525
required: false
2626
default: RequestResponse
2727
LogType:
28-
description: "Choose from the following options: None, Tail"
28+
description: 'Choose from the following options: None, Tail'
2929
required: false
3030
default: None
3131
ClientContext:
32-
description: "Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function in the context object."
32+
description: 'Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function in the context object.'
3333
required: false
3434
Payload:
35-
description: "The JSON that you want to provide to your Lambda function as input. (Buffer, Typed Array, Blob, String)"
35+
description: 'The JSON that you want to provide to your Lambda function as input. (Buffer, Typed Array, Blob, String)'
3636
required: false
3737
Qualifier:
38-
description: "Specify a version or alias to invoke a published version of the function."
38+
description: 'Specify a version or alias to invoke a published version of the function.'
3939
required: false
4040
HTTP_TIMEOUT:
4141
description: Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000)
@@ -48,7 +48,7 @@ inputs:
4848
required: false
4949
outputs:
5050
response: # id of output
51-
description: "response from lambda invocation"
51+
description: 'response from lambda invocation'
5252
runs:
53-
using: "node12"
54-
main: "dist/index.js"
53+
using: 'node16'
54+
main: 'dist/index.js'

0 commit comments

Comments
 (0)