Skip to content

Commit

Permalink
Fix artifacts index job by downgrading awscli (#3805)
Browse files Browse the repository at this point in the history
Similarly to #3803, artifact index update fails because the R2 doesn't
like the new awscli. The regression apparently comes from 1.37.0 as
well, so pin to version older than that.
  • Loading branch information
sairon authored Jan 17, 2025
1 parent 267679b commit 219d7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/artifacts-index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install AWS CLI
run: pip install awscli
run: pip install 'awscli<1.37.0'

- name: Create build index
env:
Expand Down

0 comments on commit 219d7ec

Please sign in to comment.