File not found: '/home/runner/work/_actions/gagoar/invoke-aws-lambda/master/dist/index.js'
Closed this issue ยท 9 comments
Barik85 commented
We using this action:
steps:
- name: Invoke foobarFunction Lambda
uses: gagoar/invoke-aws-lambda@master
with:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
InvocationType: 'Event'
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
FunctionName: my-trigger
Payload: ${{ toJson(github) }}
And it works perfect almost for a year.
Just right now we got an error: File not found: '/home/runner/work/_actions/gagoar/invoke-aws-lambda/master/dist/index.js'
eagerowl commented
Same issue here.
JoanAliberti commented
same issue here.
franlmnastaiunigo commented
Same one !
gagoar commented
please use the release version to make sure is safe.
steps:
- name: Invoke foobarFunction Lambda
uses: gagoar/invoke-aws-lambda@v3.3.0
with:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
InvocationType: 'Event'
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
FunctionName: my-trigger
Payload: ${{ toJson(github) }}
gagoar commented
I'm investigating in the meantime.
gagoar commented
@JoanAliberti @Barik85 @franlmnastaiunigo apologies for the inconvenience!
Should work with @master
again.
Consider having the version tagged and allow dependebot or renovate to update your workflows when new versions are available.
Lemme know if you have other issues.
Cheers.
JoanAliberti commented
Thanks for your work mate! It works correctly now!
franlmnastaiunigo commented
Thanks for the quick reply ! Works again :D!
Barik85 commented
Thanks for your work!