Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-ecr-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

Expand Down Expand Up @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-lambda-function.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notify-slack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/register-task-definition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/render-task-definition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion actions/deploy-to-s3-bucket/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading