From bd853e6acb85e405539b86a34a0abb34c529208a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:20:58 +0000 Subject: [PATCH] chore(deps): update python docker tag --- .github/workflows/ci-lite.yaml | 6 +++--- .github/workflows/ci-main.yaml | 6 +++--- ansible/Dockerfile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-lite.yaml b/.github/workflows/ci-lite.yaml index 01603ee344..056717069d 100644 --- a/.github/workflows/ci-lite.yaml +++ b/.github/workflows/ci-lite.yaml @@ -180,7 +180,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: @@ -250,7 +250,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: image: splunk/splunk:${{ fromJson(needs.meta.outputs.matrix_supportedSplunk)[0].version }} @@ -302,7 +302,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: image: splunk/splunk:${{ fromJson(needs.meta.outputs.matrix_supportedSplunk)[0].version }} diff --git a/.github/workflows/ci-main.yaml b/.github/workflows/ci-main.yaml index 1dc5fdd898..7590343f06 100644 --- a/.github/workflows/ci-main.yaml +++ b/.github/workflows/ci-main.yaml @@ -180,7 +180,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: @@ -252,7 +252,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: image: splunk/splunk:${{ fromJson(needs.meta.outputs.matrix_supportedSplunk)[0].version }} @@ -304,7 +304,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: image: splunk/splunk:${{ fromJson(needs.meta.outputs.matrix_supportedSplunk)[0].version }} 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