From 63c3f6503fb0a1a9b968a6c82991879fd546e853 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Mon, 15 Apr 2024 22:40:43 +0530 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Updated=20python=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/newapp-check.yml | 2 +- Dockerfile-base | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/newapp-check.yml b/.github/workflows/newapp-check.yml index d308766..0f94cce 100644 --- a/.github/workflows/newapp-check.yml +++ b/.github/workflows/newapp-check.yml @@ -22,7 +22,7 @@ jobs: - name: setup python uses: actions/setup-python@main with: - python-version: '3.11.5' + python-version: '3.12.3' - name: Install Requirements run: | diff --git a/Dockerfile-base b/Dockerfile-base index f3bbf6c..3f2efc8 100644 --- a/Dockerfile-base +++ b/Dockerfile-base @@ -1,5 +1,5 @@ # Use a specific version of the base Python image -ARG PYTHON_VERSION=3.11.5-slim-bullseye +ARG PYTHON_VERSION=3.12.3-slim-bullseye FROM python:${PYTHON_VERSION} AS python