Results 6 comments of App/y Innovations

For some reason ambientlight/[email protected] is still using amplify version 4.52.0 however the latest published version on [npm](https://www.npmjs.com/package/@aws-amplify/cli) is 5.5.0. According to the readme isn't amplify-cli-action supposed to be pulling the...

The Dockerfile in the master branch https://github.com/ambientlight/amplify-cli-action/blob/master/Dockerfile runs ```npm install --global --unsafe-perm @aws-amplify/cli@latest``` however only version 4.52.0 is used not 5.5.0. On my local machine: ``` $ npm view @aws-amplify/cli@latest...

I can confirm that specifying the amplify version within your workflow can be used as a temporary fix. ``` uses: ambientlight/[email protected] with: amplify_cli_version: '5.6.0' ```

Even better is to do the following: ``` env: AMPLIFY_CLI_VERION: 'latest' jobs: init: - name: Amplify configure uses: ambientlight/[email protected] with: amplify_command: configure amplify_cli_version: ${{ env.AMPLIFY_CLI_VERION }} ```

Hey @poojamat I have also logged the same issue on the amplify-js repository which is still open https://github.com/aws-amplify/amplify-js/issues/8891

Hey @diegocstn @ameter I have also logged the same issue on the `amplify-js` repository which is still open https://github.com/aws-amplify/amplify-js/issues/8891