I have a couple of custom dependencies in my app pulling from a separate git repo:
{:gen_auth, git: "https://github_path/gen_auth.git"},
{:gen_auth_cognito_adapter,
git: "https://github_path/gen_auth_cognito_adapter.git"},
When I run mix deps.get, it fetches the dependency from the url as shown.
I updated each of the repos, pushed the version, sycn'd with the main branch and rerun mix deps.get. When I look in my deps folder, it does not update these git deps. When I delete my deps folder and rerun mix deps.get, it still isn't updating this. Am I missing a key step here?