Hello everyone, I just completed the last step of migrating our CI cache images to GitHub's `ghcr.io`.
In the rare event you had the need to use some of the CI (I know some people use them) - the old ones have just been deleted: https://hub.docker.com/repository/docker/apache/airflow-ci is gone. The images are available (public access) and refreshed automatically in ghcr.io registry following those naming conventions: https://github.com/apache/airflow/blob/main/IMAGES.rst#naming-conventions The naming conventions are much more "sane" and future-proof. For example this is how you can pull the latest Python 3.9 CI image from the `main` branch. `docker pull ghcr.io/apache/airflow/main/ci/python3.9:latest` The CI and ./breeze are all using the new conventions. In case you have some old PRs based on ~ 3 weeks old main, you will need to rebase to get the CI build succeed. J.
