AWS CodePipeline Deploys Unchanged Images in ECS I am deploying multiple services using AWS CodePipeline and CodeBuild. The pipeline has been set up using AWS Copilot with the following commands: copilot init pipeline copilot pipeline deploy Below is a snippet of my pipeline manifest file: name: ** version: 1 source: provider: GitHub properties: branch: *** repository: ***** connection_name: **** stages: - name: ***** deployments: - service1 - service2 - service3: depends_on: [service1, service2] Buildspec.yaml # Buildspec runs in the build stage of your pipeline. versi