From 3f3f5c77632b1e23802aead6d115b4d470e504c5 Mon Sep 17 00:00:00 2001 From: platform-engineering-bot <137812415+platform-engineering-bot@users.noreply.github.com> Date: Thu, 30 Nov 2023 15:27:35 +0200 Subject: [PATCH 1/2] chore(deps): update all dependencies Signed-off-by: Platform Engineering Bot --- .github/workflows/publish.yml | 2 +- .pre-commit-config.yaml | 2 +- .tool-versions | 2 +- requirements.txt | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5337a25..7245fbc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -33,7 +33,7 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 + uses: docker/metadata-action@f19c3691d56f26e3f97547999df66a9ecbf0d9b0 # v5.1.0 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fc93bd7..a77698e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -25,7 +25,7 @@ repos: - id: markdownlint additional_dependencies: [rake] - repo: https://github.com/maxbrunet/pre-commit-renovate - rev: 37.61.4 + rev: 37.76.1 hooks: - id: renovate-config-validator - repo: https://github.com/mrtazz/checkmake.git diff --git a/.tool-versions b/.tool-versions index a11c179..d57262a 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,4 +1,4 @@ -awscli 2.13.39 +awscli 2.14.4 terragrunt 0.53.8 terraform 1.6.5 pulumi 3.94.2 diff --git a/requirements.txt b/requirements.txt index 606b0c8..9925d86 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -ansible==8.6.1 -boto3==1.29.7 +ansible==9.0.1 +boto3==1.33.4 pip==23.3.1 From bc41dcee9175e425b7dc96a7d9d403df4f523b51 Mon Sep 17 00:00:00 2001 From: Liora Milbaum Date: Thu, 30 Nov 2023 16:12:41 +0200 Subject: [PATCH 2/2] Switch to python 3.11 parent image --- Dockerfile | 9 ++++++--- requirements.txt | 1 - 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6566088..966469a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,15 @@ -FROM registry.access.redhat.com/ubi9:9.3-1361.1699548029@sha256:6b95efc134c2af3d45472c0a2f88e6085433df058cc210abb2bb061ac4d74359 +FROM registry.access.redhat.com/ubi9/python-311:1-38 -COPY requirements.txt .tool-versions /root/ +USER root +WORKDIR /root + +COPY requirements.txt .tool-versions ./ # renovate: datasource=github-releases depName=asdf-vm/asdf ENV ASDF_VERSION=v0.12.0 RUN dnf install -y \ - git openssh-clients python3-pip make unzip rubygems openssl-devel perl zlib-devel bzip2 python3.11 && \ + git openssh-clients make unzip rubygems openssl-devel perl zlib-devel bzip2 && \ dnf clean all -y && \ git clone https://github.com/asdf-vm/asdf.git /root/.asdf --branch "${ASDF_VERSION}" --depth 1 && \ . /root/.asdf/asdf.sh && \ diff --git a/requirements.txt b/requirements.txt index 9925d86..e6a0762 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ ansible==9.0.1 boto3==1.33.4 -pip==23.3.1