Skip to content

Commit

Permalink
fix(ci) enforce older version of requests when installing dotrun to w…
Browse files Browse the repository at this point in the history
…ork around a recently introduced bug in it

Signed-off-by: David Edler <david.edler@canonical.com>
  • Loading branch information
edlerd committed May 22, 2024
1 parent 7dcb459 commit 487ba59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Install Dotrun
run: |
sudo pip3 install dotrun
sudo pip3 install dotrun requests==2.31.0 # requests version is pinned to avoid breaking changes, can be removed once issue is resolved: https://github.com/docker/docker-py/issues/3256
- name: Restore cached keys
uses: actions/cache/restore@v3
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

- name: Install Dotrun
run: |
sudo pip3 install dotrun
sudo pip3 install dotrun requests==2.31.0 # requests version is pinned to avoid breaking changes, can be removed once issue is resolved: https://github.com/docker/docker-py/issues/3256
- name: Install LXD-UI dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

- name: Install Dotrun
run: |
sudo pip3 install dotrun
sudo pip3 install dotrun requests==2.31.0 # requests version is pinned to avoid breaking changes, can be removed once issue is resolved: https://github.com/docker/docker-py/issues/3256
- name: Restore cached keys
uses: actions/cache/restore@v3
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:

- name: Install Dotrun
run: |
sudo pip3 install dotrun
sudo pip3 install dotrun requests==2.31.0 # requests version is pinned to avoid breaking changes, can be removed once issue is resolved: https://github.com/docker/docker-py/issues/3256
- name: Install LXD-UI dependencies
run: |
Expand Down

0 comments on commit 487ba59

Please sign in to comment.