From a0d353ffd47c717cc3abf34d7a6733957bc60d96 Mon Sep 17 00:00:00 2001 From: katriendg Date: Fri, 20 Mar 2026 15:47:02 +0100 Subject: [PATCH] chore(build): add Go toolchain devcontainer feature and Dependabot gomod Closes #329, #330 --- .devcontainer/devcontainer.json | 1 + .github/dependabot.yml | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index bac30547..7d2dd316 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,6 +14,7 @@ }, "ghcr.io/devcontainers/features/github-cli:1": {}, "ghcr.io/devcontainers/features/node:1": {}, + "ghcr.io/devcontainers/features/go:1": {}, "ghcr.io/devcontainers/features/terraform:1": { "installTerraformDocs": true }, diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4337dcb6..d565824f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -199,3 +199,17 @@ updates: commit-message: prefix: "chore" include: "scope" + + # Go module dependencies for Terraform e2e tests + - package-ecosystem: "gomod" + directory: "/infrastructure/terraform/e2e" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "infrastructure" + commit-message: + prefix: "chore" + include: "scope"