From 02f6eaa95ace609ded9d425b58996239a90f4e5d Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 29 Aug 2024 21:24:39 +0000 Subject: [PATCH] chore(deps): update all dependencies Signed-off-by: Platform Engineering Bot --- .github/workflows/pre_commit.yml | 2 +- main.tf | 6 +++--- variables.tf | 2 +- versions.tf | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pre_commit.yml b/.github/workflows/pre_commit.yml index 16feeb7..48dd379 100644 --- a/.github/workflows/pre_commit.yml +++ b/.github/workflows/pre_commit.yml @@ -11,5 +11,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 + - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 - uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 diff --git a/main.tf b/main.tf index e11e02d..fc86398 100644 --- a/main.tf +++ b/main.tf @@ -9,7 +9,7 @@ data "aws_security_group" "default" { module "vpc" { source = "terraform-aws-modules/vpc/aws" - version = "5.12.1" + version = "5.13.0" name = "vpc-${var.environment}" cidr = "10.0.0.0/16" @@ -33,7 +33,7 @@ module "vpc" { module "vpc_endpoints" { source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints" - version = "5.12.1" + version = "5.13.0" vpc_id = var.vpc_id == null ? module.vpc.vpc_id : var.vpc_id @@ -57,7 +57,7 @@ resource "random_id" "unique_prefix" { module "runner-instance" { source = "cattle-ops/gitlab-runner/aws" - version = "7.12.1" + version = "7.13.1" environment = var.environment iam_object_prefix = random_id.unique_prefix.hex diff --git a/variables.tf b/variables.tf index e38b824..787b20c 100644 --- a/variables.tf +++ b/variables.tf @@ -131,7 +131,7 @@ variable "runner_worker_docker_machine_instance_root_size" { variable "runner_version" { description = "Gitlab runner version" type = string - default = "17.2.1" // renovate: packageName=gitlab-org/gitlab-runner + default = "17.3.1" // renovate: packageName=gitlab-org/gitlab-runner } variable "gitlab_group_id" { diff --git a/versions.tf b/versions.tf index 71a10a2..c7ee6b5 100644 --- a/versions.tf +++ b/versions.tf @@ -2,11 +2,11 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "5.62.0" + version = "5.65.0" } gitlab = { source = "gitlabhq/gitlab" - version = "17.2.0" + version = "17.3.1" } local = { source = "hashicorp/local"