From 0ca471a0437d73d9a1231ad5bfb1afbbffa990a3 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sat, 26 Aug 2023 11:52:14 +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 +- .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 dbbfca3..58fb07d 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.4' + python-version: '3.11.5' - name: Install Requirements run: | diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index ef87098..377849c 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.4' + PYTHON_VERSION: '3.11.5' diff --git a/Dockerfile-base b/Dockerfile-base index 3502400..9ca3f83 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.4-slim-bullseye +ARG PYTHON_VERSION=3.11.5-slim-bullseye FROM python:${PYTHON_VERSION} AS python