From 14349d318800d1873d1d832f8f23a3f9acb8c250 Mon Sep 17 00:00:00 2001 From: Martin Peck <51542678+sonoransun@users.noreply.github.com> Date: Mon, 9 Oct 2023 12:26:25 -0700 Subject: [PATCH] Update version pins for Python ecs deploy dependencies including six and urllib (#404) * Update version pins including six and urllib3 --- .gitlab-ci.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7dc2802f..dbc17870 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 @@ -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