diff --git a/.github/workflows/build-ecr-image.yml b/.github/workflows/build-ecr-image.yml index 31913574..f3950d1b 100644 --- a/.github/workflows/build-ecr-image.yml +++ b/.github/workflows/build-ecr-image.yml @@ -289,7 +289,7 @@ jobs: - name: 'Notify slack of build started' if: (inputs.skip-if-exists == false || steps.already-exists.outputs.answer == 'false') && inputs.notify-slack == true - uses: shopsmart/github-actions/actions/notify-slack@v2 + uses: shopsmart/github-actions/actions/notify-slack@v3 with: application: ${{ inputs.application }} status: started @@ -301,7 +301,7 @@ jobs: - name: 'Is github release?' id: is-gh-release if: inputs.skip-if-exists == false || steps.already-exists.outputs.answer == 'false' - uses: shopsmart/github-actions/actions/is-gh-release@v2 + uses: shopsmart/github-actions/actions/is-gh-release@v3 with: ref: ${{ inputs.ref }} @@ -415,7 +415,7 @@ jobs: - name: 'Notify slack of build status' if: always() && (inputs.skip-if-exists == false || steps.already-exists.outputs.answer == 'false') && inputs.notify-slack == true - uses: shopsmart/github-actions/actions/notify-slack@v2 + uses: shopsmart/github-actions/actions/notify-slack@v3 with: application: ${{ inputs.application }} status: ${{ job.status }} diff --git a/.github/workflows/notify-slack.yml b/.github/workflows/notify-slack.yml index 0cbfa0ab..4fef2d2d 100644 --- a/.github/workflows/notify-slack.yml +++ b/.github/workflows/notify-slack.yml @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Notify slack' - uses: shopsmart/github-actions/actions/notify-slack@v2 + uses: shopsmart/github-actions/actions/notify-slack@v3 with: application: ${{ inputs.application }} environment: ${{ inputs.environment }} diff --git a/.github/workflows/register-task-definition.yml b/.github/workflows/register-task-definition.yml index ef30e6c4..9ffd57db 100644 --- a/.github/workflows/register-task-definition.yml +++ b/.github/workflows/register-task-definition.yml @@ -184,7 +184,7 @@ jobs: steps: - name: 'Notify slack of deployment started' if: inputs.notify-slack == true - uses: shopsmart/github-actions/actions/notify-slack@v2 + uses: shopsmart/github-actions/actions/notify-slack@v3 with: application: ${{ inputs.application }} environment: ${{ inputs.environment }} @@ -236,14 +236,14 @@ jobs: force-new-deployment: ${{ inputs.force-new-deployment }} - name: 'Tag the task definition' - uses: shopsmart/github-actions/actions/tag-ecs-resource@v2 + uses: shopsmart/github-actions/actions/tag-ecs-resource@v3 with: resource-arn: ${{ steps.register.outputs.task-definition-arn }} tags: ${{ inputs.task-definition-tags }} - name: 'Tag the ECS Service' if: inputs.service != '' - uses: shopsmart/github-actions/actions/tag-ecs-resource@v2 + uses: shopsmart/github-actions/actions/tag-ecs-resource@v3 with: resource-arn: ${{ env.ECS_SERVICE_ARN }} tags: ${{ inputs.service-tags }} @@ -256,7 +256,7 @@ jobs: - name: 'Notify slack of deployment status' if: always() && inputs.notify-slack == true - uses: shopsmart/github-actions/actions/notify-slack@v2 + uses: shopsmart/github-actions/actions/notify-slack@v3 with: application: ${{ inputs.application }} environment: ${{ inputs.environment }}