From e3ebd4de10544f12a19148f2e7025cf8d26464fd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 09:34:48 -0400 Subject: [PATCH] Update debian Docker tag to v12 (#2896) --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a9408fcf..f36c651cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -274,12 +274,12 @@ jobs: needs: build-binary-linux name: "check system | python on debian" runs-on: ubuntu-latest - container: debian:bullseye + container: debian:bookworm steps: - uses: actions/checkout@v4 - name: "Install Python" - run: apt-get update && apt-get install -y python3.9 python3-pip python3.9-venv + run: apt-get update && apt-get install -y python3.11 python3-pip python3.11-venv - name: "Download binary" uses: actions/download-artifact@v4 @@ -290,10 +290,10 @@ jobs: run: chmod +x ./uv - name: "Print Python path" - run: echo $(which python3.9) + run: echo $(which python3.11) - name: "Validate global Python install" - run: python3.9 scripts/check_system_python.py --uv ./uv + run: python3.11 scripts/check_system_python.py --uv ./uv --externally-managed system-test-fedora: needs: build-binary-linux