From 0f1fff01c2f686df5fe75217ab271ee46d2cddc5 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Fri, 25 Aug 2023 19:40:30 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Updated=20python=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/newapp-check.yml | 2 +- .github/workflows/pre-commit.yml | 2 +- Dockerfile-base | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/newapp-check.yml b/.github/workflows/newapp-check.yml index 6883cc0..dbbfca3 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' + python-version: '3.11.4' - name: Install Requirements run: | diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index e0c275b..ef87098 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -15,4 +15,4 @@ jobs: secrets: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - PYTHON_VERSION: '3.11' + PYTHON_VERSION: '3.11.4' diff --git a/Dockerfile-base b/Dockerfile-base index 4e9431c..3502400 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-slim-bullseye +ARG PYTHON_VERSION=3.11.4-slim-bullseye FROM python:${PYTHON_VERSION} AS python