From baa125d0e18b8f186c9b7e9805d1dcb4a320305d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 01:26:06 +0000 Subject: [PATCH] Bump aws-actions/amazon-ecs-deploy-task-definition from 1 to 2 Bumps [aws-actions/amazon-ecs-deploy-task-definition](https://github.com/aws-actions/amazon-ecs-deploy-task-definition) from 1 to 2. - [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/v1...v2) --- updated-dependencies: - dependency-name: aws-actions/amazon-ecs-deploy-task-definition dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-push-deploy-on ecr-ecs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-push-deploy-on ecr-ecs.yml b/.github/workflows/build-push-deploy-on ecr-ecs.yml index 3e570f82f..439b95f74 100644 --- a/.github/workflows/build-push-deploy-on ecr-ecs.yml +++ b/.github/workflows/build-push-deploy-on ecr-ecs.yml @@ -107,7 +107,7 @@ jobs: - name: Deploy Amazon ECS task definition for migrate id: task-def-new-version-migrate if: steps.get-last-def-migrate.outputs.exists == 'true' - uses: aws-actions/amazon-ecs-deploy-task-definition@v1 + uses: aws-actions/amazon-ecs-deploy-task-definition@v2 with: task-definition: ${{ steps.task-def-migrate.outputs.task-definition }} cluster: ${{ vars.ECS_CLUSTER_NAME }} @@ -147,7 +147,7 @@ jobs: - name: Deploy Amazon ECS task definition for celery id: task-def-new-version-celery if: steps.get-last-def-celery.outputs.exists == 'true' - uses: aws-actions/amazon-ecs-deploy-task-definition@v1 + uses: aws-actions/amazon-ecs-deploy-task-definition@v2 with: task-definition: ${{ steps.task-def-celery.outputs.task-definition }} cluster: ${{ vars.ECS_CLUSTER_NAME }} @@ -179,7 +179,7 @@ jobs: image: ${{ steps.build-image.outputs.image }} - name: Deploy Amazon ECS task definition - uses: aws-actions/amazon-ecs-deploy-task-definition@v1 + uses: aws-actions/amazon-ecs-deploy-task-definition@v2 with: task-definition: ${{ steps.task-def.outputs.task-definition }} cluster: ${{ vars.ECS_CLUSTER_NAME }}