Skip to content

Commit

Permalink
Update version pins for Python ecs deploy dependencies including six …
Browse files Browse the repository at this point in the history
…and urllib (#404)

* Update version pins including six and urllib3
  • Loading branch information
sonoransun authored Oct 9, 2023
1 parent d2212dd commit 14349d3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ deploy_qa:
AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
script:
- apk add --no-cache curl jq python3 py3-pip git
- pip install botocore==1.31.58
- pip install boto3==1.28.58
- pip install urllib3==2.0.6
- pip install six==1.16.0
- pip install botocore==1.31.62
- pip install boto3==1.28.62
- pip install ecs-deploy==1.14.0
- pip install awscli==1.29.59
- aws ssm get-parameters-by-path --region $AWS_DEFAULT_REGION --path /qa/pender/ --recursive --with-decryption --output text --query "Parameters[].[Name]" | sed -E 's#/qa/pender/##' > env.qa.names
Expand Down Expand Up @@ -82,8 +84,10 @@ deploy_live:
AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
script:
- apk add --no-cache curl jq python3 py3-pip git
- pip install botocore==1.31.58
- pip install boto3==1.28.58
- pip install urllib3==2.0.6
- pip install six==1.16.0
- pip install botocore==1.31.62
- pip install boto3==1.28.62
- pip install ecs-deploy==1.14.0
- pip install awscli==1.29.59
- aws ssm get-parameters-by-path --region $AWS_DEFAULT_REGION --path /live/pender/ --recursive --with-decryption --output text --query "Parameters[].[Name]" | sed -E 's#/live/pender/##' > env.live.names
Expand Down

0 comments on commit 14349d3

Please sign in to comment.