diff --git a/.github/workflows/prod-deploy.yml b/.github/workflows/prod-deploy.yml index 5bc06259..dd0abaf8 100644 --- a/.github/workflows/prod-deploy.yml +++ b/.github/workflows/prod-deploy.yml @@ -41,14 +41,14 @@ jobs: - name: Update ECS task image id: task-def - uses: aws-actions/amazon-ecs-render-task-definition@cbed19f1b86bbb18f59cfffde7107b93cc9b75da # v1.8.1 + uses: aws-actions/amazon-ecs-render-task-definition@06472d439cb66af6210a6709bfc842c26b053706 # v1.8.2 with: task-definition: task-definition.json container-name: ${{ env.SERVICE_NAME }} image: "${{ env.REGISTRY }}:${{ github.event.workflow_run.head_branch }}" - name: Create the new ECS task definition - uses: aws-actions/amazon-ecs-deploy-task-definition@7b5ba17dae98c8fd463ddf2cef977d3be43322c5 # v2.5.0 + uses: aws-actions/amazon-ecs-deploy-task-definition@c6e19c08506099e50400581201a3a767fd8e3ff4 # v2.5.1 with: task-definition: ${{ steps.task-def.outputs.task-definition }} cluster: ${{ env.CLUSTER_NAME }} diff --git a/.github/workflows/staging-deploy.yml b/.github/workflows/staging-deploy.yml index f75d88a2..b091f753 100644 --- a/.github/workflows/staging-deploy.yml +++ b/.github/workflows/staging-deploy.yml @@ -42,14 +42,14 @@ jobs: - name: Update ECS task image id: task-def - uses: aws-actions/amazon-ecs-render-task-definition@cbed19f1b86bbb18f59cfffde7107b93cc9b75da # v1.8.1 + uses: aws-actions/amazon-ecs-render-task-definition@06472d439cb66af6210a6709bfc842c26b053706 # v1.8.2 with: task-definition: task-definition.json container-name: ${{ env.SERVICE_NAME }} image: "${{ env.REGISTRY }}:${{ github.sha }}" - name: Create the new ECS task definition - uses: aws-actions/amazon-ecs-deploy-task-definition@7b5ba17dae98c8fd463ddf2cef977d3be43322c5 # v2.5.0 + uses: aws-actions/amazon-ecs-deploy-task-definition@c6e19c08506099e50400581201a3a767fd8e3ff4 # v2.5.1 with: task-definition: ${{ steps.task-def.outputs.task-definition }} cluster: ${{ env.CLUSTER_NAME }}