diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b88c28cb5..465f3418c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: '3.8' + python-version: '3.11' - name: Prepare Environment run: | diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 3dbb7f189..5ae578014 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -18,7 +18,7 @@ jobs: token: ${{ secrets.REPO_GHA_PAT }} - uses: actions/setup-python@v4 with: - python-version: '3.8' + python-version: '3.11' - name: Update docker-entrypoint uses: nick-fields/retry@v2 with: diff --git a/UBI/Dockerfile-multiarch.template b/UBI/Dockerfile-multiarch.template index 4e695d1ad..1a4e0fb01 100644 --- a/UBI/Dockerfile-multiarch.template +++ b/UBI/Dockerfile-multiarch.template @@ -64,9 +64,9 @@ RUN --mount=type=secret,id=cs_token \ # Install barman-cloud RUN set -xe ; \ - yum -y install python38-pip python38-psycopg2 ; \ - pip3.8 install --upgrade pip ; \ - pip3.8 install -r requirements.txt ; \ + yum -y install python3.11-pip python3.11-psycopg2 ; \ + pip3.11 install --upgrade pip ; \ + pip3.11 install -r requirements.txt ; \ yum -y clean all --enablerepo='*' # make the sample config easier to munge (and "correct by default") diff --git a/UBI/Dockerfile-multilang.template b/UBI/Dockerfile-multilang.template index ebd659c2a..5fa018850 100644 --- a/UBI/Dockerfile-multilang.template +++ b/UBI/Dockerfile-multilang.template @@ -56,9 +56,9 @@ RUN --mount=type=secret,id=cs_token \ # Install barman-cloud RUN set -xe ; \ - yum -y install python38-pip python38-psycopg2 ; \ - pip3.8 install --upgrade pip ; \ - pip3.8 install -r requirements.txt ; \ + yum -y install python3.11-pip python3.11-psycopg2 ; \ + pip3.11 install --upgrade pip ; \ + pip3.11 install -r requirements.txt ; \ yum -y clean all --enablerepo='*' # make the sample config easier to munge (and "correct by default") diff --git a/UBI/Dockerfile-postgis-multilang.template b/UBI/Dockerfile-postgis-multilang.template index bd3e40673..0023e7912 100644 --- a/UBI/Dockerfile-postgis-multilang.template +++ b/UBI/Dockerfile-postgis-multilang.template @@ -46,9 +46,9 @@ RUN set -xe ; \ # Install barman-cloud RUN set -xe ; \ - yum -y install python38-pip python38-psycopg2 ; \ - pip3.8 install --upgrade pip ; \ - pip3.8 install -r requirements.txt ; \ + yum -y install python3.11-pip python3.11-psycopg2 ; \ + pip3.11 install --upgrade pip ; \ + pip3.11 install -r requirements.txt ; \ yum -y clean all --enablerepo='*' # make the sample config easier to munge (and "correct by default") diff --git a/UBI/Dockerfile-postgis.template b/UBI/Dockerfile-postgis.template index c0fde2fdb..7d569424b 100644 --- a/UBI/Dockerfile-postgis.template +++ b/UBI/Dockerfile-postgis.template @@ -45,9 +45,9 @@ RUN set -xe ; \ # Install barman-cloud RUN set -xe ; \ - yum -y install python38-pip python38-psycopg2 ; \ - pip3.8 install --upgrade pip ; \ - pip3.8 install -r requirements.txt ; \ + yum -y install python3.11-pip python3.11-psycopg2 ; \ + pip3.11 install --upgrade pip ; \ + pip3.11 install -r requirements.txt ; \ yum -y clean all --enablerepo='*' # make the sample config easier to munge (and "correct by default") diff --git a/UBI/Dockerfile.template b/UBI/Dockerfile.template index c77e1e926..3c671b1d9 100644 --- a/UBI/Dockerfile.template +++ b/UBI/Dockerfile.template @@ -55,9 +55,9 @@ RUN --mount=type=secret,id=cs_token \ # Install barman-cloud RUN set -xe ; \ - yum -y install python38-pip python38-psycopg2 ; \ - pip3.8 install --upgrade pip ; \ - pip3.8 install -r requirements.txt ; \ + yum -y install python3.11-pip python3.11-psycopg2 ; \ + pip3.11 install --upgrade pip ; \ + pip3.11 install -r requirements.txt ; \ yum -y clean all --enablerepo='*' # make the sample config easier to munge (and "correct by default")