AWX 10.0.0 requirements.yml (ansible-galaxy) not working

Hello,

I’v installed a instance next to out old one that is running AWX 4.0.0.0.

Both versions is using the same project, but version 10 wont download the repos listed in requirements.yml, the file is formated as follows:

`

Hi,

I get the same issue.
For me, the bug is in the Environment config in AWX UI I set about host key checking. I ignored.

problem :
https://github.com/ansible/awx/issues/6045

The fix for roles update is done here :https://github.com/ansible/awx/pull/6488

I found out more info,
for me the tag “install_roles” is not set when the project is beeing updated, not sure why this is.

I found “install_roles” in 4 places when searching the code:

`

ag install_roles -A1 -B1

awx/main/models/projects.py
601- if self.job_type == ‘run’:
602: job_tags.append(‘install_roles’)
603- job_tags.append(‘install_collections’)

awx/main/tasks.py
1859- sync_needs =
1860: all_sync_needs = [‘update_{}’.format(job.project.scm_type), ‘install_roles’, ‘install_collections’]
1861- if not job.project.scm_type: