From 42d6e5957a7572c373a00c0fe57728e6e8dc69d8 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 19 Dec 2024 18:06:22 +0000 Subject: [PATCH] chore(deps): update all dependencies Signed-off-by: Platform Engineering Bot --- .devcontainer/devcontainer.json | 2 +- .github/workflows/pre_commit.yml | 2 +- .pre-commit-config.yaml | 2 +- main.tf | 6 +++--- variables.tf | 2 +- versions.tf | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 14fe439..1474da7 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ "image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04", "features": { "ghcr.io/devcontainers/features/terraform:1.3.8": { - "version": "1.9.8" // renovate: packageName=hashicorp/terraform + "version": "1.10.3" // renovate: packageName=hashicorp/terraform } } } diff --git a/.github/workflows/pre_commit.yml b/.github/workflows/pre_commit.yml index 1f42cec..eabb3c8 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 + - uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 - uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 73c5d24..98de119 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ default_language_version: repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace diff --git a/main.tf b/main.tf index 2778722..af400fd 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.13.0" + version = "5.17.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.13.0" + version = "5.17.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.14.0" + version = "8.1.0" environment = var.environment iam_object_prefix = random_id.unique_prefix.hex diff --git a/variables.tf b/variables.tf index 61ca99e..102c24c 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.4.0" // renovate: packageName=gitlab-org/gitlab-runner + default = "17.6.0" // renovate: packageName=gitlab-org/gitlab-runner } variable "gitlab_group_id" { diff --git a/versions.tf b/versions.tf index 67103e5..5aeb66f 100644 --- a/versions.tf +++ b/versions.tf @@ -2,11 +2,11 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "5.70.0" + version = "5.82.0" } gitlab = { source = "gitlabhq/gitlab" - version = "17.4.0" + version = "17.6.1" } local = { source = "hashicorp/local"