From 6b472dcc7418e5ff3b1e6b749642bfeba240b0ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 19:08:07 +0000 Subject: [PATCH] Bump shopsmart/github-actions from 2 to 3 Bumps [shopsmart/github-actions](https://github.com/shopsmart/github-actions) from 2 to 3. - [Release notes](https://github.com/shopsmart/github-actions/releases) - [Commits](https://github.com/shopsmart/github-actions/compare/v2...v3) --- updated-dependencies: - dependency-name: shopsmart/github-actions dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-ecr-image.yml | 6 +++--- .github/workflows/notify-slack.yml | 2 +- .github/workflows/register-task-definition.yml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) 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 }}