From edf4749887996df6722bd7252c2348f235de5840 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Mar 2025 23:47:09 +0000 Subject: [PATCH] github-actions(deps): bump aws-actions/amazon-ecs-deploy-task-definition Bumps [aws-actions/amazon-ecs-deploy-task-definition](https://github.com/aws-actions/amazon-ecs-deploy-task-definition) from 16f052ed696e6e5bf88c208a8e5ba1af7ced3310 to 4d6fb3b487851733f82c7cd442c3d5cdebc4fa8f. - [Release notes](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/releases) - [Changelog](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/blob/master/CHANGELOG.md) - [Commits](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/compare/16f052ed696e6e5bf88c208a8e5ba1af7ced3310...4d6fb3b487851733f82c7cd442c3d5cdebc4fa8f) --- updated-dependencies: - dependency-name: aws-actions/amazon-ecs-deploy-task-definition dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-template.yml b/.github/workflows/deploy-template.yml index d98a0370c..69ca037c8 100644 --- a/.github/workflows/deploy-template.yml +++ b/.github/workflows/deploy-template.yml @@ -117,7 +117,7 @@ jobs: id: deploy-service-only # This one is different. The single-image case is when not deploying core. if: inputs.service != 'core' - uses: aws-actions/amazon-ecs-deploy-task-definition@16f052ed696e6e5bf88c208a8e5ba1af7ced3310 + uses: aws-actions/amazon-ecs-deploy-task-definition@4d6fb3b487851733f82c7cd442c3d5cdebc4fa8f with: # it is because of this line that the two steps need different if conditions task-definition: ${{ steps.task-def-service.outputs.task-definition }} @@ -128,7 +128,7 @@ jobs: - name: Deploy Amazon ECS task definition including migrations id: deploy-service-and-migrations if: inputs.service == 'core' - uses: aws-actions/amazon-ecs-deploy-task-definition@16f052ed696e6e5bf88c208a8e5ba1af7ced3310 + uses: aws-actions/amazon-ecs-deploy-task-definition@4d6fb3b487851733f82c7cd442c3d5cdebc4fa8f with: # it is because of this line that the two steps need different if conditions task-definition: ${{ steps.task-def-migration.outputs.task-definition }}