From 656be9ab4d0506a4d41adcaa309df12ad2daef1f Mon Sep 17 00:00:00 2001 From: Joey Orlando Date: Thu, 17 Apr 2025 14:44:58 -0400 Subject: [PATCH] deps: bump Python to `3.12.10` (#5517) # What this PR does Addressing some outstanding linux system dep CVEs --- .github/actions/setup-python/action.yml | 2 +- engine/Dockerfile | 2 +- tools/migrators/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-python/action.yml b/.github/actions/setup-python/action.yml index 6d46a6bd..c93eed25 100644 --- a/.github/actions/setup-python/action.yml +++ b/.github/actions/setup-python/action.yml @@ -16,7 +16,7 @@ runs: id: setup-python uses: actions/setup-python@v5.1.0 with: - python-version: "3.12.3" + python-version: "3.12.10" cache: "pip" cache-dependency-path: ${{ inputs.python-requirements-paths }} - name: Install Python dependencies diff --git a/engine/Dockerfile b/engine/Dockerfile index 70035d5c..c89ea8a7 100644 --- a/engine/Dockerfile +++ b/engine/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.6-alpine3.20 AS base +FROM python:3.12.10-alpine3.21 AS base ARG TARGETPLATFORM # Create a group and user to run an app diff --git a/tools/migrators/Dockerfile b/tools/migrators/Dockerfile index 1a76dfa6..975becad 100644 --- a/tools/migrators/Dockerfile +++ b/tools/migrators/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.3-alpine3.18 +FROM python:3.12.10-alpine3.21 ENV PYTHONUNBUFFERED=1 WORKDIR /app