Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix python3-pip version on ubuntu as the old one seems to have vanish… #90

Merged
merged 4 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading