From 07e1cedeb84a26fcf0848b928ecb407716f5ced9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cerm=C3=A1k?= Date: Fri, 17 Jan 2025 10:03:17 +0100 Subject: [PATCH] Pin awscli to older version to work around R2 issues (#3803) CI job fails to upload build artifacts because R2 doesn't support checksums [1]. This was added in awscli 1.37.0 [2], pin to a version older than that to work around the issue before R2 supports it or ignores the header. [1] https://www.cloudflarestatus.com/incidents/t5nrjmpxc1cj [2] https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 893754474..dcbcd6f8c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -199,7 +199,7 @@ jobs: - name: Install AWS CLI if: ${{ github.event_name != 'release' && needs.prepare.outputs.publish_build == 'true' }} - run: pip install awscli + run: pip install 'awscli<1.37.0' - name: Set version suffix if: ${{ github.event_name != 'release' }}