@@ -19,15 +19,15 @@ This action allows you to synchronously invoke a Lambda function and get the res
19
19
20
20
## Table of contents
21
21
22
- - [ Input parameters] ( #input-parameters )
23
- - [ Credentials] ( #credentials )
24
- - [ Invocation] ( #invocation )
25
- - [ Output] ( #output )
26
- - [ Examples] ( #examples )
27
- - [ Basic example] ( #basic-example )
28
- - [ Using output] ( #using-output )
29
- - [ Specifying alias/version] ( #specifying-aliasversion )
30
- - [ Handling logs] ( #handling-logs )
22
+ - [ Input parameters] ( #input-parameters )
23
+ - [ Credentials] ( #credentials )
24
+ - [ Invocation] ( #invocation )
25
+ - [ Output] ( #output )
26
+ - [ Examples] ( #examples )
27
+ - [ Basic example] ( #basic-example )
28
+ - [ Using output] ( #using-output )
29
+ - [ Specifying alias/version] ( #specifying-aliasversion )
30
+ - [ Handling logs] ( #handling-logs )
31
31
32
32
<hr >
33
33
@@ -85,7 +85,7 @@ This step invokes a Lambda function without regard for the invocation output:
85
85
86
86
``` yaml
87
87
- name : Invoke foobarFunction Lambda
88
- uses : gagoar/invoke-aws-lambda@master
88
+ uses : gagoar/invoke-aws-lambda@master # or the latest version.
89
89
with :
90
90
AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
91
91
AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -100,7 +100,7 @@ These steps process the response payload by using step outputs:
100
100
` ` ` yaml
101
101
- name : Invoke foobarFunction Lambda
102
102
id : foobar
103
- uses : gagoar/invoke-aws-lambda@master
103
+ uses : gagoar/invoke-aws-lambda@master # or the latest version.
104
104
with :
105
105
AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
106
106
AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -119,7 +119,7 @@ This step invokes a Lambda function with the `someAlias` alias:
119
119
120
120
` ` ` yaml
121
121
- name: Invoke foobarFunction Lambda
122
- uses: gagoar/invoke-aws-lambda@master
122
+ uses: gagoar/invoke-aws-lambda@master # or the latest version.
123
123
with:
124
124
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
125
125
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -144,7 +144,7 @@ These steps process logs returned from the invocation:
144
144
` ` ` yaml
145
145
- name: Invoke foobarFunction Lambda
146
146
id: foobar
147
- uses: gagoar/invoke-aws-lambda@master
147
+ uses: gagoar/invoke-aws-lambda@master # or the latest version.
148
148
with:
149
149
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
150
150
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -153,4 +153,4 @@ These steps process logs returned from the invocation:
153
153
Payload: '{ "myParameter": false }'
154
154
- name: Store tail logs to file
155
155
run: echo "${{ fromJSON(steps.foobar.outputs.response).LogResult }}" > invocation-logs.json
156
- ` ` `
156
+ ` ` `
0 commit comments