From 5e308cf1a5d3c614a879d3d7b84391ffd4ae033a Mon Sep 17 00:00:00 2001 From: Grunet Date: Fri, 23 Aug 2024 17:28:56 -0500 Subject: [PATCH] =?UTF-8?q?fix=20python3-pip=20version=20on=20ubuntu=20as?= =?UTF-8?q?=20the=20old=20one=20seems=20to=20have=20vanish=E2=80=A6=20(#90?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix python3-pip version on ubuntu as the old one seems to have vanished somehow * update pipx version on the GH runner * update pip version on the GH runner * update Docker version --- .devcontainer/Dockerfile | 2 +- .github/workflows/ci.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8841d66..0f49ddd 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -13,7 +13,7 @@ RUN POETRY_VERSION=1.5.1 POETRY_HOME=/home/vscode/.local/ python poetryInstallSc # AWS Cloudformation -RUN apt-get install -y python3-pip="22.0.2+dfsg-1ubuntu0.3" +RUN apt-get install -y python3-pip="22.0.2+dfsg-1ubuntu0.4" RUN pip install cfn-lint=='0.79.5' # This is partially duplicated in ci.yaml, with the copy target being the only difference diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e9f55fd..7183c03 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: # If this change looks legitimate (i.e. Github updating the vendored version, or coming after a change to the runner OS version) update the hard-coded version below run: | pipx --version - pipx --version | grep "1.2.0" + pipx --version | grep "1.6.0" - name: Install poetry run: | @@ -59,7 +59,7 @@ jobs: # If this change looks legitimate (i.e. Github updating the vendored version, or coming after a change to the runner OS version) update the hard-coded version below run: | docker --version - docker --version | grep "Docker version 24.0.5" + docker --version | grep "Docker version 26.1.3" - name: Smoke Tests - Server Startup run: | @@ -95,7 +95,7 @@ jobs: # If this change looks legitimate (i.e. actions/setup-python updating the vendored version) update the hard-coded version below run: | pip --version - pip --version | grep "23.2.1" + pip --version | grep "24.2" - name: Install cfn-lint run: |