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