gagoar/invoke-aws-lambda

File not found: '/home/runner/work/_actions/gagoar/invoke-aws-lambda/master/dist/index.js'

Closed this issue ยท 9 comments

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'

Same issue here.

same issue here.

Same one !

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) }}

I'm investigating in the meantime.

@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.

Thanks for your work mate! It works correctly now!

Thanks for the quick reply ! Works again :D!

Thanks for your work!