Update debian Docker tag to v12 (#2896)

This commit is contained in:
renovate[bot]
2024-04-08 09:34:48 -04:00
committed by GitHub
parent e5ea1785ff
commit e3ebd4de10
+4 -4
View File
@@ -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