From 8f34c37018966a9838bdea043874f89cd5f30a8e Mon Sep 17 00:00:00 2001 From: David Edler Date: Wed, 5 Jun 2024 15:39:36 +0200 Subject: [PATCH] chore(ci) fix ci pipeline by fixing requests version when installing dotrun Signed-off-by: David Edler --- .github/workflows/pr.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 2037863..60877c7 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -26,7 +26,8 @@ jobs: - uses: actions/checkout@v4 - name: Install Dotrun - uses: canonical/install-dotrun@main + run: | + 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 dependencies run: | @@ -75,7 +76,8 @@ jobs: - uses: actions/checkout@v4 - name: Install dotrun - uses: canonical/install-dotrun@main + run: | + 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 node dependencies run: |