From 46f2e9e892ca4e87cf25666d2cbf8f251604df8f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 00:09:32 +0000 Subject: [PATCH] chore(deps): update all dependencies --- .env | 2 +- .github/workflows/slash-command-dispatch.yml | 4 ++-- .pre-commit-config.yaml | 8 ++++---- eks-addons.tf | 2 +- examples/complete/main.tf | 4 ++-- go.mod | 2 +- go.sum | 2 ++ main.tf | 2 +- 8 files changed, 14 insertions(+), 12 deletions(-) diff --git a/.env b/.env index 7e27ccd..8ab5203 100644 --- a/.env +++ b/.env @@ -1,3 +1,3 @@ BUILD_HARNESS_REPO=ghcr.io/defenseunicorns/build-harness/build-harness # renovate: datasource=github-tags depName=defenseunicorns/build-harness -BUILD_HARNESS_VERSION=2.0.38 +BUILD_HARNESS_VERSION=2.0.43 diff --git a/.github/workflows/slash-command-dispatch.yml b/.github/workflows/slash-command-dispatch.yml index 4f2eb8a..80d5e61 100644 --- a/.github/workflows/slash-command-dispatch.yml +++ b/.github/workflows/slash-command-dispatch.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Get token id: get_workflow_token - uses: peter-murray/workflow-application-token-action@v3 + uses: peter-murray/workflow-application-token-action@v4 with: application_id: ${{ secrets.NARWHAL_BOT_APP_ID }} application_private_key: ${{ secrets.NARWHAL_BOT_SECRET }} @@ -35,7 +35,7 @@ jobs: steps: - name: Get token id: get_workflow_token - uses: peter-murray/workflow-application-token-action@v3 + uses: peter-murray/workflow-application-token-action@v4 with: application_id: ${{ secrets.NARWHAL_BOT_APP_ID }} application_private_key: ${{ secrets.NARWHAL_BOT_SECRET }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index edea465..6e3a7af 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: check-added-large-files args: ["--maxkb=1024"] @@ -30,7 +30,7 @@ repos: - "--verbose" - "--allow-parallel-runners" - repo: https://github.com/antonbabenko/pre-commit-terraform - rev: v1.94.1 + rev: v1.96.1 hooks: - id: terraform_fmt args: @@ -40,7 +40,7 @@ repos: - --args=--config=__GIT_WORKING_DIR__/.tflint.hcl - --hook-config=--tf-path=tofu - repo: https://github.com/tofuutils/pre-commit-opentofu - rev: v1.0.3 # Get the latest from: https://github.com/tofuutils/pre-commit-opentofu/releases + rev: v2.1.0 # Get the latest from: https://github.com/tofuutils/pre-commit-opentofu/releases hooks: - id: tofu_docs args: @@ -52,6 +52,6 @@ repos: args: - --args=--config-file __GIT_WORKING_DIR__/.checkov.yml - repo: https://github.com/renovatebot/pre-commit-hooks - rev: 38.61.0 + rev: 38.133.2 hooks: - id: renovate-config-validator diff --git a/eks-addons.tf b/eks-addons.tf index 6f1ae91..3e15c58 100644 --- a/eks-addons.tf +++ b/eks-addons.tf @@ -15,7 +15,7 @@ locals { } module "eks_blueprints_kubernetes_addons" { - source = "git::https://github.com/aws-ia/terraform-aws-eks-blueprints-addons.git?ref=v1.16.3" + source = "git::https://github.com/aws-ia/terraform-aws-eks-blueprints-addons.git?ref=v1.18.2" cluster_name = module.aws_eks.cluster_name cluster_endpoint = module.aws_eks.cluster_endpoint diff --git a/examples/complete/main.tf b/examples/complete/main.tf index c0a29dc..700388f 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -58,7 +58,7 @@ module "subnet_addrs" { } module "vpc" { - source = "git::https://github.com/defenseunicorns/terraform-aws-vpc.git?ref=v0.1.11" + source = "git::https://github.com/defenseunicorns/terraform-aws-vpc.git?ref=v0.1.12" name = local.vpc_name vpc_cidr = var.vpc_cidr @@ -465,7 +465,7 @@ module "self_managed_node_group_keypair" { } module "self_managed_node_group_secret_key_secrets_manager_secret" { - source = "git::https://github.com/terraform-aws-modules/terraform-aws-secrets-manager.git?ref=v1.1.2" + source = "git::https://github.com/terraform-aws-modules/terraform-aws-secrets-manager.git?ref=v1.3.1" name = module.self_managed_node_group_keypair.key_pair_name description = "Secret key for self managed node group keypair" diff --git a/go.mod b/go.mod index 0d0717e..a5c197c 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.22.2 require ( github.com/defenseunicorns/delivery-aws-iac v0.0.12 github.com/defenseunicorns/delivery_aws_iac_utils v0.0.6 - github.com/gruntwork-io/terratest v0.47.1 + github.com/gruntwork-io/terratest v0.47.2 github.com/stretchr/testify v1.9.0 ) diff --git a/go.sum b/go.sum index 6e89e21..42bb823 100644 --- a/go.sum +++ b/go.sum @@ -440,6 +440,8 @@ github.com/gruntwork-io/terratest v0.47.0 h1:xIy1pT7NbGVlMLDZEHl3+3iSnvffh8tN2pL github.com/gruntwork-io/terratest v0.47.0/go.mod h1:oywHw1cFKXSYvKPm27U7quZVzDUlA22H2xUrKCe26xM= github.com/gruntwork-io/terratest v0.47.1 h1:qOaxnL7Su5+KpDHYUN/ek1jn8ImvCKtOkaY4OSMS4tI= github.com/gruntwork-io/terratest v0.47.1/go.mod h1:LnYX8BN5WxUMpDr8rtD39oToSL4CBERWSCusbJ0d/64= +github.com/gruntwork-io/terratest v0.47.2 h1:t6iWwsqJH7Gx0RwXleU/vjc+2c0JXRMdj3DxYXTBssQ= +github.com/gruntwork-io/terratest v0.47.2/go.mod h1:LnYX8BN5WxUMpDr8rtD39oToSL4CBERWSCusbJ0d/64= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= diff --git a/main.tf b/main.tf index 2d7277b..85dc042 100644 --- a/main.tf +++ b/main.tf @@ -100,7 +100,7 @@ locals { } module "aws_eks" { - source = "git::https://github.com/terraform-aws-modules/terraform-aws-eks.git?ref=v20.24.0" + source = "git::https://github.com/terraform-aws-modules/terraform-aws-eks.git?ref=v20.26.1" cluster_name = local.cluster_name cluster_version = var.cluster_version