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"