From 6462132d17fd7a0e755f31195005b894d711b2a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Nov 2024 10:05:24 +0000 Subject: [PATCH] Bump SERVICE_NAME-dlq::cloud-platform-terraform-sqs from 5.0.0 to 5.1.0 in /templates (#4406) * Bump SERVICE_NAME-dlq::cloud-platform-terraform-sqs in /templates Bumps [SERVICE_NAME-dlq::cloud-platform-terraform-sqs](https://github.com/ministryofjustice/cloud-platform-terraform-sqs) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/ministryofjustice/cloud-platform-terraform-sqs/releases) - [Commits](https://github.com/ministryofjustice/cloud-platform-terraform-sqs/compare/5.0.0...5.1.0) --- updated-dependencies: - dependency-name: SERVICE_NAME-dlq::github::ministryofjustice/cloud-platform-terraform-sqs::5.0.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Fix post-build required check not triggering * Debugging * Debugging --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marcus Aspin --- .github/workflows/check.yml | 3 +-- templates/sqs.tf | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 470632ba99..d9af009d1d 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -20,8 +20,7 @@ jobs: if: always() steps: - name: Check build matrix status - if: ${{ needs.build.result != 'success' }} - run: exit 1 + run: if [ "${{ needs.build.result }}" = "success" ]; then exit 0; else exit 1; fi analyse: name: Analyse diff --git a/templates/sqs.tf b/templates/sqs.tf index 4b7a95a975..56b2b2515e 100644 --- a/templates/sqs.tf +++ b/templates/sqs.tf @@ -33,7 +33,7 @@ resource "aws_sqs_queue_policy" "SERVICE_NAME-queue-policy" { } module "SERVICE_NAME-dlq" { - source = "github.com/ministryofjustice/cloud-platform-terraform-sqs?ref=5.0.0" + source = "github.com/ministryofjustice/cloud-platform-terraform-sqs?ref=5.1.0" # Queue configuration sqs_name = "SERVICE_NAME-dlq"