From 16ad9bf5b09a2244fab5093e14b522e35c3cc57b Mon Sep 17 00:00:00 2001 From: "renovate-cds[bot]" <117288780+renovate-cds[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 09:40:28 -0400 Subject: [PATCH] chore(deps): update all patch dependencies (#1873) * chore(deps): update all patch dependencies * chore: bump TF version --------- Co-authored-by: renovate-cds[bot] <117288780+renovate-cds[bot]@users.noreply.github.com> Co-authored-by: Pat Heard --- .github/workflows/deploy-production-container.yml | 2 +- .github/workflows/deploy-staging-container.yml | 2 +- .github/workflows/terragrunt-apply-production.yml | 2 +- .github/workflows/terragrunt-apply-staging.yml | 2 +- .github/workflows/terragrunt-plan-production.yml | 2 +- .github/workflows/terragrunt-plan-staging.yml | 2 +- infrastructure/.devcontainer/devcontainer.json | 2 +- infrastructure/terragrunt/aws/database/rds.tf | 2 +- infrastructure/terragrunt/aws/ecr/oidc.tf | 2 +- infrastructure/terragrunt/aws/ecs/cloudwatch_logs.tf | 2 +- infrastructure/terragrunt/aws/network/vpc.tf | 2 +- infrastructure/terragrunt/aws/network/vpn.tf | 2 +- infrastructure/terragrunt/aws/storage/s3.tf | 2 +- infrastructure/terragrunt/env/common/provider.tf | 2 +- infrastructure/test/requirements.txt | 2 +- wordpress/composer.json | 2 +- wordpress/composer.lock | 8 ++++---- 17 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/deploy-production-container.yml b/.github/workflows/deploy-production-container.yml index 44177af87..1f9a72494 100644 --- a/.github/workflows/deploy-production-container.yml +++ b/.github/workflows/deploy-production-container.yml @@ -15,7 +15,7 @@ on: env: AWS_REGION: ca-central-1 CONFTEST_VERSION: 0.27.0 - TERRAFORM_VERSION: 1.9.3 + TERRAFORM_VERSION: 1.9.5 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_database_name: ${{ secrets.PRODUCTION_DATABASE_NAME }} diff --git a/.github/workflows/deploy-staging-container.yml b/.github/workflows/deploy-staging-container.yml index ef21eec6a..b4b2ce8e6 100644 --- a/.github/workflows/deploy-staging-container.yml +++ b/.github/workflows/deploy-staging-container.yml @@ -14,7 +14,7 @@ on: env: AWS_REGION: ca-central-1 - TERRAFORM_VERSION: 1.9.3 + TERRAFORM_VERSION: 1.9.5 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_database_name: ${{ secrets.STAGING_DATABASE_NAME }} diff --git a/.github/workflows/terragrunt-apply-production.yml b/.github/workflows/terragrunt-apply-production.yml index 2918d1889..8c8992cc1 100644 --- a/.github/workflows/terragrunt-apply-production.yml +++ b/.github/workflows/terragrunt-apply-production.yml @@ -10,7 +10,7 @@ on: env: AWS_REGION: ca-central-1 CONFTEST_VERSION: 0.27.0 - TERRAFORM_VERSION: 1.9.3 + TERRAFORM_VERSION: 1.9.5 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_client_vpn_access_group_id: ${{ secrets.PRODUCTION_CLIENT_VPN_ACCESS_GROUP_ID }} diff --git a/.github/workflows/terragrunt-apply-staging.yml b/.github/workflows/terragrunt-apply-staging.yml index 092088550..1df0b2287 100644 --- a/.github/workflows/terragrunt-apply-staging.yml +++ b/.github/workflows/terragrunt-apply-staging.yml @@ -13,7 +13,7 @@ on: env: AWS_REGION: ca-central-1 - TERRAFORM_VERSION: 1.9.3 + TERRAFORM_VERSION: 1.9.5 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_client_vpn_access_group_id: ${{ secrets.STAGING_CLIENT_VPN_ACCESS_GROUP_ID }} diff --git a/.github/workflows/terragrunt-plan-production.yml b/.github/workflows/terragrunt-plan-production.yml index 3e1bd0954..cb2d2b2fb 100644 --- a/.github/workflows/terragrunt-plan-production.yml +++ b/.github/workflows/terragrunt-plan-production.yml @@ -10,7 +10,7 @@ on: env: AWS_REGION: ca-central-1 CONFTEST_VERSION: 0.27.0 - TERRAFORM_VERSION: 1.9.3 + TERRAFORM_VERSION: 1.9.5 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_client_vpn_access_group_id: ${{ secrets.PRODUCTION_CLIENT_VPN_ACCESS_GROUP_ID }} diff --git a/.github/workflows/terragrunt-plan-staging.yml b/.github/workflows/terragrunt-plan-staging.yml index 2a8ef9a5d..afdb4ebd6 100644 --- a/.github/workflows/terragrunt-plan-staging.yml +++ b/.github/workflows/terragrunt-plan-staging.yml @@ -11,7 +11,7 @@ on: env: AWS_REGION: ca-central-1 - TERRAFORM_VERSION: 1.9.3 + TERRAFORM_VERSION: 1.9.5 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_client_vpn_access_group_id: ${{ secrets.STAGING_CLIENT_VPN_ACCESS_GROUP_ID }} diff --git a/infrastructure/.devcontainer/devcontainer.json b/infrastructure/.devcontainer/devcontainer.json index 6c1b3236d..0a0c9527b 100644 --- a/infrastructure/.devcontainer/devcontainer.json +++ b/infrastructure/.devcontainer/devcontainer.json @@ -23,7 +23,7 @@ }, "features": { "terraform": { - "version": "1.9.3", + "version": "1.9.5", "tflint": "latest", "terragrunt": "0.57.5" } diff --git a/infrastructure/terragrunt/aws/database/rds.tf b/infrastructure/terragrunt/aws/database/rds.tf index cc6f1952e..cf1bf9df3 100644 --- a/infrastructure/terragrunt/aws/database/rds.tf +++ b/infrastructure/terragrunt/aws/database/rds.tf @@ -2,7 +2,7 @@ # RDS MySQL cluster across 3 subnets # module "rds_cluster" { - source = "github.com/cds-snc/terraform-modules//rds?ref=v9.6.1" + source = "github.com/cds-snc/terraform-modules//rds?ref=v9.6.4" name = "wordpress" database_name = var.database_name diff --git a/infrastructure/terragrunt/aws/ecr/oidc.tf b/infrastructure/terragrunt/aws/ecr/oidc.tf index 561bbda08..48617e82b 100644 --- a/infrastructure/terragrunt/aws/ecr/oidc.tf +++ b/infrastructure/terragrunt/aws/ecr/oidc.tf @@ -3,7 +3,7 @@ locals { } module "ecr_tag_release" { - source = "github.com/cds-snc/terraform-modules//gh_oidc_role?ref=v9.6.1" + source = "github.com/cds-snc/terraform-modules//gh_oidc_role?ref=v9.6.4" billing_tag_value = var.billing_tag_value roles = [ { diff --git a/infrastructure/terragrunt/aws/ecs/cloudwatch_logs.tf b/infrastructure/terragrunt/aws/ecs/cloudwatch_logs.tf index 6113d107d..2835b5022 100644 --- a/infrastructure/terragrunt/aws/ecs/cloudwatch_logs.tf +++ b/infrastructure/terragrunt/aws/ecs/cloudwatch_logs.tf @@ -9,7 +9,7 @@ resource "aws_cloudwatch_log_group" "ecs_events" { } module "sentinel_forwarder" { - source = "github.com/cds-snc/terraform-modules//sentinel_forwarder?ref=v9.6.1" + source = "github.com/cds-snc/terraform-modules//sentinel_forwarder?ref=v9.6.4" function_name = "sentinel-forwarder" billing_tag_value = var.billing_tag_value diff --git a/infrastructure/terragrunt/aws/network/vpc.tf b/infrastructure/terragrunt/aws/network/vpc.tf index 61947858d..267388fec 100644 --- a/infrastructure/terragrunt/aws/network/vpc.tf +++ b/infrastructure/terragrunt/aws/network/vpc.tf @@ -2,7 +2,7 @@ # VPC: 3 public + 3 private subnets across 3 availability zones # module "wordpress_vpc" { - source = "github.com/cds-snc/terraform-modules//vpc?ref=v9.6.1" + source = "github.com/cds-snc/terraform-modules//vpc?ref=v9.6.4" name = "wordpress" cidrsubnet_newbits = 8 diff --git a/infrastructure/terragrunt/aws/network/vpn.tf b/infrastructure/terragrunt/aws/network/vpn.tf index ced48440b..d5dec5133 100644 --- a/infrastructure/terragrunt/aws/network/vpn.tf +++ b/infrastructure/terragrunt/aws/network/vpn.tf @@ -1,5 +1,5 @@ module "vpn" { - source = "github.com/cds-snc/terraform-modules//client_vpn?ref=v9.6.1" + source = "github.com/cds-snc/terraform-modules//client_vpn?ref=v9.6.4" endpoint_name = "private_subnets" access_group_id = var.client_vpn_access_group_id diff --git a/infrastructure/terragrunt/aws/storage/s3.tf b/infrastructure/terragrunt/aws/storage/s3.tf index ff3eae32d..5bb182bdd 100644 --- a/infrastructure/terragrunt/aws/storage/s3.tf +++ b/infrastructure/terragrunt/aws/storage/s3.tf @@ -1,5 +1,5 @@ module "wordpress_storage" { - source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.1" + source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.4" bucket_name = "platform-gc-articles-${var.env}-uploads" billing_tag_value = var.billing_tag_value } diff --git a/infrastructure/terragrunt/env/common/provider.tf b/infrastructure/terragrunt/env/common/provider.tf index ae1eeb67a..35615c323 100644 --- a/infrastructure/terragrunt/env/common/provider.tf +++ b/infrastructure/terragrunt/env/common/provider.tf @@ -1,6 +1,6 @@ terraform { - required_version = "1.9.3" + required_version = "1.9.5" required_providers { aws = { source = "hashicorp/aws" diff --git a/infrastructure/test/requirements.txt b/infrastructure/test/requirements.txt index 6b1d61e11..5940cf42e 100644 --- a/infrastructure/test/requirements.txt +++ b/infrastructure/test/requirements.txt @@ -1 +1 @@ -locust==2.31.3 \ No newline at end of file +locust==2.31.5 \ No newline at end of file diff --git a/wordpress/composer.json b/wordpress/composer.json index 89db959a7..7db4d1335 100644 --- a/wordpress/composer.json +++ b/wordpress/composer.json @@ -86,7 +86,7 @@ "wpml/wpml-string-translation": "*", "wpml/wp-seo-multilingual": "*", "wpackagist-plugin/login-lockdown":"2.06", - "wpackagist-plugin/disable-user-login":"1.3.9", + "wpackagist-plugin/disable-user-login":"1.3.10", "wpackagist-plugin/wordpress-importer":"0.8.2", "humanmade/s3-uploads": "^3.0", "cds-snc/cds-base": "dev-main", diff --git a/wordpress/composer.lock b/wordpress/composer.lock index 230fe32d4..ddc6329e3 100644 --- a/wordpress/composer.lock +++ b/wordpress/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "36dcb257d132e6da3087ee975d18843d", + "content-hash": "1faaba67a06798447231589b1f6ad48a", "packages": [ { "name": "alphagov/notifications-php-client", @@ -4028,15 +4028,15 @@ }, { "name": "wpackagist-plugin/disable-user-login", - "version": "1.3.9", + "version": "1.3.10", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/disable-user-login/", - "reference": "tags/1.3.9" + "reference": "tags/1.3.10" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/disable-user-login.1.3.9.zip" + "url": "https://downloads.wordpress.org/plugin/disable-user-login.1.3.10.zip" }, "require": { "composer/installers": "^1.0 || ^2.0"