Skip to content

Commit

Permalink
fix python3-pip version on ubuntu as the old one seems to have vanish… (
Browse files Browse the repository at this point in the history
#90)

* 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
  • Loading branch information
Grunet authored Aug 23, 2024
1 parent bec132b commit 5e308cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit 5e308cf

Please sign in to comment.