How can I find the versions of the collections used in different projects? I had one project today that had a playbook break because I synced the project and I guess updated the mysql collection used in that project.
if you want to know the version of a collection that is vendor in the awx-ee image, you can run this command
docker run --rm quay.io/ansible/awx-ee:latest ansible-galaxy collection list
for your own collection requirements, you can either pin the version, or if not pinned it will always be latest
AWX Team