From 79c0019a11ebd90b2ee75178e3aa7e39722bdd8e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 17:47:23 +0100 Subject: [PATCH 1/5] Update tx-pts-dai/github-workflows action to v2 (#14) | datasource | package | from | to | | ----------- | --------------------------- | ---- | -- | | github-tags | tx-pts-dai/github-workflows | v1 | v2 | Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../.github/workflows/build-push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bases/sfmc-app/@{{ cookiecutter.project_slug }}/.github/workflows/build-push.yaml b/bases/sfmc-app/@{{ cookiecutter.project_slug }}/.github/workflows/build-push.yaml index e929096..e146015 100644 --- a/bases/sfmc-app/@{{ cookiecutter.project_slug }}/.github/workflows/build-push.yaml +++ b/bases/sfmc-app/@{{ cookiecutter.project_slug }}/.github/workflows/build-push.yaml @@ -33,7 +33,7 @@ jobs: docker_build_push: needs: [get_date] - uses: tx-pts-dai/github-workflows/.github/workflows/docker-build-push-ecr.yaml@v1 + uses: tx-pts-dai/github-workflows/.github/workflows/docker-build-push-ecr.yaml@v2 with: environment: prod docker_context: . From 142ed2406ab2eddb54a4fe4e37539a8b9bff2e60 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 17:47:47 +0100 Subject: [PATCH 2/5] chore(deps): update actions/checkout digest to cbb7224 (#13) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../.github/workflows/publish-docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mkdocs/@{{ cookiecutter.project_slug }}/.github/workflows/publish-docs.yaml b/addons/mkdocs/@{{ cookiecutter.project_slug }}/.github/workflows/publish-docs.yaml index a506223..80e67d8 100644 --- a/addons/mkdocs/@{{ cookiecutter.project_slug }}/.github/workflows/publish-docs.yaml +++ b/addons/mkdocs/@{{ cookiecutter.project_slug }}/.github/workflows/publish-docs.yaml @@ -18,7 +18,7 @@ jobs: contents: write steps: - name: Checkout main - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 + uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb - name: Set up Python ${{ env.PYTHON_VERSION }} uses: actions/setup-python@v5 From bad471cce3970353fb73c26eb604a2ffd4c71f59 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 17:48:06 +0100 Subject: [PATCH 3/5] chore(deps): update terraform minor / patch updates (#11) | datasource | package | from | to | | ---------------- | ---------------------------------- | ------ | ------ | | terraform-module | terraform-aws-modules/iam/aws | 5.32.0 | 5.52.2 | | terraform-module | tx-pts-dai/kubernetes-platform/aws | 0.7.0 | 0.9.2 | Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../@{{ cookiecutter.project_slug }}/deploy/app/providers.tf | 2 +- .../@{{ cookiecutter.project_slug }}/deploy/app/providers.tf | 2 +- .../@{{ cookiecutter.project_slug }}/deploy/infra/main.tf | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/discovery-app-layer/@{{ cookiecutter.project_slug }}/deploy/app/providers.tf b/addons/discovery-app-layer/@{{ cookiecutter.project_slug }}/deploy/app/providers.tf index e9671ac..177d8fd 100644 --- a/addons/discovery-app-layer/@{{ cookiecutter.project_slug }}/deploy/app/providers.tf +++ b/addons/discovery-app-layer/@{{ cookiecutter.project_slug }}/deploy/app/providers.tf @@ -70,7 +70,7 @@ data "terraform_remote_state" "infra_local" { module "platform_ssm" { source = "tx-pts-dai/kubernetes-platform/aws//modules/ssm" - version = "0.7.0" + version = "0.9.2" base_prefix = "infrastructure" stack_type = "platform" diff --git a/bases/simple-app/@{{ cookiecutter.project_slug }}/deploy/app/providers.tf b/bases/simple-app/@{{ cookiecutter.project_slug }}/deploy/app/providers.tf index af4ad2e..5ff4e69 100644 --- a/bases/simple-app/@{{ cookiecutter.project_slug }}/deploy/app/providers.tf +++ b/bases/simple-app/@{{ cookiecutter.project_slug }}/deploy/app/providers.tf @@ -70,7 +70,7 @@ data "terraform_remote_state" "infra_local" { module "platform_ssm" { source = "tx-pts-dai/kubernetes-platform/aws//modules/ssm" - version = "0.7.0" + version = "0.9.2" base_prefix = "infrastructure" stack_type = "platform" diff --git a/bases/simple-app/@{{ cookiecutter.project_slug }}/deploy/infra/main.tf b/bases/simple-app/@{{ cookiecutter.project_slug }}/deploy/infra/main.tf index 650bb61..4f97a7d 100644 --- a/bases/simple-app/@{{ cookiecutter.project_slug }}/deploy/infra/main.tf +++ b/bases/simple-app/@{{ cookiecutter.project_slug }}/deploy/infra/main.tf @@ -6,7 +6,7 @@ locals { module "platform_ssm" { source = "tx-pts-dai/kubernetes-platform/aws//modules/ssm" - version = "0.7.0" + version = "0.9.2" base_prefix = "infrastructure" stack_type = "platform" @@ -73,7 +73,7 @@ resource "aws_iam_policy" "get_all_secrets" { module "iam_eks_role" { source = "terraform-aws-modules/iam/aws//modules/iam-eks-role" - version = "5.32.0" + version = "5.52.2" role_name_prefix = "${local.app_name}-" From 6b8c96f545bc33caa475573df0553f655dafeba6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 17:48:34 +0100 Subject: [PATCH 4/5] chore(deps): update python docker tag to v3.13 (#9) * chore(deps): update actions/checkout digest to eef6144 * chore(deps): update python docker tag to v3.13 | datasource | package | from | to | | ---------- | ------- | ---- | ---- | | docker | python | 3.11 | 3.13 | --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../@{{ cookiecutter.project_slug }}/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bases/simple-app/@{{ cookiecutter.project_slug }}/@{{ cookiecutter.project_slug }}/Dockerfile b/bases/simple-app/@{{ cookiecutter.project_slug }}/@{{ cookiecutter.project_slug }}/Dockerfile index aefe32d..1dd64dc 100644 --- a/bases/simple-app/@{{ cookiecutter.project_slug }}/@{{ cookiecutter.project_slug }}/Dockerfile +++ b/bases/simple-app/@{{ cookiecutter.project_slug }}/@{{ cookiecutter.project_slug }}/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-slim +FROM python:3.13-slim WORKDIR /app COPY requirements.txt . From 879cae0ec5b8f96e183307bcbb649235cbcc4f43 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 17:48:58 +0100 Subject: [PATCH 5/5] chore(deps): update node.js to v22 (#15) | datasource | package | from | to | | ---------- | ------- | ------ | ------- | | docker | node | 21.7.3 | 22.10.0 | Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- bases/sfmc-app/@{{ cookiecutter.project_slug }}/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bases/sfmc-app/@{{ cookiecutter.project_slug }}/Dockerfile b/bases/sfmc-app/@{{ cookiecutter.project_slug }}/Dockerfile index 6981faa..8cb09ce 100644 --- a/bases/sfmc-app/@{{ cookiecutter.project_slug }}/Dockerfile +++ b/bases/sfmc-app/@{{ cookiecutter.project_slug }}/Dockerfile @@ -1,4 +1,4 @@ -FROM node:21 +FROM node:22 RUN mkdir -p /usr/app WORKDIR /usr/app