diff --git a/.github/workflows/build-ecr-image.yml b/.github/workflows/build-ecr-image.yml index 9b3b9cd2..4b74121b 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@v3 + uses: shopsmart/github-actions/actions/notify-slack@v4 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@v3 + uses: shopsmart/github-actions/actions/is-gh-release@v4 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@v3 + uses: shopsmart/github-actions/actions/notify-slack@v4 with: application: ${{ inputs.application }} status: ${{ job.status }} diff --git a/.github/workflows/deploy-lambda-function.yml b/.github/workflows/deploy-lambda-function.yml index a68409a3..bfaf9539 100644 --- a/.github/workflows/deploy-lambda-function.yml +++ b/.github/workflows/deploy-lambda-function.yml @@ -158,7 +158,7 @@ jobs: steps: - name: 'Notify slack of deployment started' if: inputs.notify-slack == true - uses: shopsmart/github-actions/actions/notify-slack@v3 + uses: shopsmart/github-actions/actions/notify-slack@v4 with: application: ${{ inputs.application }} environment: ${{ inputs.environment }} @@ -198,7 +198,7 @@ jobs: # deploy - name: 'Deploy' id: deploy - uses: shopsmart/github-actions/actions/deploy-lambda-function@v3 + uses: shopsmart/github-actions/actions/deploy-lambda-function@v4 with: zip-file: ${{ inputs.pattern }} function-name: ${{ inputs.function-name }} @@ -232,7 +232,7 @@ jobs: - name: 'Notify slack of deployment status' if: always() && inputs.notify-slack == true - uses: shopsmart/github-actions/actions/notify-slack@v3 + uses: shopsmart/github-actions/actions/notify-slack@v4 with: application: ${{ inputs.application }} environment: ${{ inputs.environment }} diff --git a/.github/workflows/notify-slack.yml b/.github/workflows/notify-slack.yml index 4fef2d2d..6cfed0a2 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@v3 + uses: shopsmart/github-actions/actions/notify-slack@v4 with: application: ${{ inputs.application }} environment: ${{ inputs.environment }} diff --git a/.github/workflows/register-task-definition.yml b/.github/workflows/register-task-definition.yml index ef79f7c7..38010a60 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@v3 + uses: shopsmart/github-actions/actions/notify-slack@v4 with: application: ${{ inputs.application }} environment: ${{ inputs.environment }} @@ -197,7 +197,7 @@ jobs: - name: 'Notify datadog of deployment' if: inputs.notify-datadog == true - uses: shopsmart/github-actions/actions/create-datadog-downtime@v3 + uses: shopsmart/github-actions/actions/create-datadog-downtime@v4 with: datadog-api-key: ${{ secrets.datadog-api-key }} datadog-app-key: ${{ secrets.datadog-app-key }} @@ -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@v3 + uses: shopsmart/github-actions/actions/tag-ecs-resource@v4 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@v3 + uses: shopsmart/github-actions/actions/tag-ecs-resource@v4 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@v3 + uses: shopsmart/github-actions/actions/notify-slack@v4 with: application: ${{ inputs.application }} environment: ${{ inputs.environment }} diff --git a/.github/workflows/render-task-definition.yml b/.github/workflows/render-task-definition.yml index 3f00a2b3..37f33bc1 100644 --- a/.github/workflows/render-task-definition.yml +++ b/.github/workflows/render-task-definition.yml @@ -148,7 +148,7 @@ jobs: - name: 'Render task definition' id: render - uses: shopsmart/github-actions/actions/render-jinjanator-template@v3 + uses: shopsmart/github-actions/actions/render-jinjanator-template@v4 with: working-directory: ${{ inputs.working-directory }} template: ${{ inputs.template }} diff --git a/actions/deploy-to-s3-bucket/action.yml b/actions/deploy-to-s3-bucket/action.yml index 6f6a7c53..af632966 100644 --- a/actions/deploy-to-s3-bucket/action.yml +++ b/actions/deploy-to-s3-bucket/action.yml @@ -47,7 +47,7 @@ runs: - name: 'Unpack assets' id: unpack - uses: shopsmart/github-actions/actions/unpack-archive@v3 + uses: shopsmart/github-actions/actions/unpack-archive@v4 with: filename: ${{ inputs.pattern }} destination: assets