From 189b0707f38ba6fb3ad4ea29825b40f295a46abf Mon Sep 17 00:00:00 2001 From: Paul Schreiber Date: Thu, 7 Nov 2024 12:36:10 -0500 Subject: [PATCH] build: update python to 3.12.7 (#1539) --- .github/workflows/build.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff9c0a943..ce19c038c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: '3.12.6' + python-version: "3.12.7" - name: Install Python dependencies for CI run: make install-dev @@ -59,7 +59,7 @@ jobs: if: ${{ hashFiles('Data/*') == '' }} uses: actions/setup-python@v5 with: - python-version: '3.12.6' + python-version: "3.12.7" - name: Install Python dependencies and download data if: ${{ hashFiles('Data/*') == '' }} diff --git a/Dockerfile b/Dockerfile index 950246c6e..377abbfc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.6-slim-bookworm +FROM python:3.12.7-slim-bookworm RUN adduser --disabled-password terraso