Using an AWS ECR image as a Github Action container
Moving from Docker Hub to ECR Pubstack, my current client decided to migrate all its docker images to ECR. With the recent announcement about rate limiting on Docker Hub, maybe we will not be the only ones moving away. For our CI/CD pipelines we use both CircleCI and GitHub Actions. Using an ECR image is a really simple task in CircleCI, it consists of adding the aws_auth to the image configuration. docker: - image: ACCOUNT.dkr.ecr.REGION.amazonaws.com/IMAGE:VERSION aws_auth: aws_access_key_id: $AWS_ACCESS_KEY_ID aws_secret_access_key: $AWS_SECRET_ACCESS_KEY On the other hand, using ECR images in GitHub Actions was a bit more tricky. ...