From b565ae6acdee661c33501a955a68da942b17fbaf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 11:38:52 +0000 Subject: [PATCH] chore(deps): update python docker tag --- .github/workflows/ci-lite.yaml | 2 +- .github/workflows/ci-main.yaml | 2 +- ansible/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-lite.yaml b/.github/workflows/ci-lite.yaml index 1ac2acdf08..fcd8149da3 100644 --- a/.github/workflows/ci-lite.yaml +++ b/.github/workflows/ci-lite.yaml @@ -165,7 +165,7 @@ jobs: # runs all of the steps inside the specified container rather than on the VM host. # Because of this the network configuration changes from host based network to a container network. container: - image: python:3.9-buster + image: python:3.11-buster services: splunk: diff --git a/.github/workflows/ci-main.yaml b/.github/workflows/ci-main.yaml index 5bfb7ca320..8bedd75652 100644 --- a/.github/workflows/ci-main.yaml +++ b/.github/workflows/ci-main.yaml @@ -165,7 +165,7 @@ jobs: # runs all of the steps inside the specified container rather than on the VM host. # Because of this the network configuration changes from host based network to a container network. container: - image: python:3.9-buster + image: python:3.11-buster services: splunk: diff --git a/ansible/Dockerfile b/ansible/Dockerfile index 8e03af55a2..80949775ef 100644 --- a/ansible/Dockerfile +++ b/ansible/Dockerfile @@ -1,5 +1,5 @@ # install requirements in venv -FROM python:3.10 AS venv_builder +FROM python:3.12 AS venv_builder RUN pip install ansible~=6.1.0 --no-cache-dir RUN pip install pywinrm>=0.4.2 --no-cache-dir RUN pip install ansible-lint>=6.0.0 --no-cache-dir