I’m using Github Actions and the deploy-cli to automate creating and updating actions in my Auth0 tenant. How can I specify the latest version of a dependency, similar to when creating an action manually through the dashboard.
My tenant.yaml file
- name: Dependency Action
      code: ./actions/Dependency Action/code.js
      dependencies:
          - name: ipaddr.js
          - version: latest
      deployed: false
      runtime: node16
      secrets: []
      status: built
      supported_triggers:
          - id: post-login
            version: v2
Doing the above returns an error in Github actions, with an invalid version.