diff --git a/.github/workflows/dashboard-build-and-deploy.yml b/.github/workflows/dashboard-build-and-deploy.yml index c8d41e5b..2e774d6c 100644 --- a/.github/workflows/dashboard-build-and-deploy.yml +++ b/.github/workflows/dashboard-build-and-deploy.yml @@ -94,7 +94,7 @@ jobs: environment: ${{ inputs.environment }} is_deployment: ${{ github.ref == 'refs/heads/main' }} terraform_stack: gp2gp_dashboard - image_tag: gp2gp_dashboard + image_tag: gp2gp-dashboard build_lambda: true git_ref: ${{ github.ref }} secrets: inherit diff --git a/services/metrics-calculator/setup.py b/services/metrics-calculator/setup.py index a86aca76..144b3b6f 100644 --- a/services/metrics-calculator/setup.py +++ b/services/metrics-calculator/setup.py @@ -5,5 +5,5 @@ version="1.0.0", packages=find_packages(where="src"), package_dir={"": "src"}, - install_requires=["python-dateutil>=2.9", "boto3>=1.42.3", "urllib3==2.6.0", "PyArrow==22.0.0"], + install_requires=["python-dateutil>=2.9", "boto3>=1.42.3", "urllib3==2.6.3", "PyArrow==23.0.0"], ) diff --git a/services/ods-downloader/setup.py b/services/ods-downloader/setup.py index de8c2c80..eaeaeb0f 100644 --- a/services/ods-downloader/setup.py +++ b/services/ods-downloader/setup.py @@ -9,7 +9,7 @@ "python-dateutil>=2.8", "requests>=2.2", "boto3>=1.29.7", - "urllib3==1.26.18", + "urllib3==2.6.3", ], entry_points={ "console_scripts": [ diff --git a/services/reports-generator/setup.py b/services/reports-generator/setup.py index af2f7ae7..7a036db9 100644 --- a/services/reports-generator/setup.py +++ b/services/reports-generator/setup.py @@ -8,8 +8,8 @@ install_requires=[ "python-dateutil>=2.8", "boto3>=1.18", - "urllib3==1.26.18", - "PyArrow==22.0.0", + "urllib3==2.6.3", + "PyArrow==23.0.0", "polars~=0.20.31", ], ) diff --git a/services/spine-exporter/setup.py b/services/spine-exporter/setup.py index 221efd64..622f1c12 100644 --- a/services/spine-exporter/setup.py +++ b/services/spine-exporter/setup.py @@ -5,5 +5,5 @@ version="1.0.0", packages=find_packages(where="src"), package_dir={"": "src"}, - install_requires=["requests>=2.26", "boto3>=1.18", "urllib3==1.26.18"], + install_requires=["requests>=2.26", "boto3>=1.18", "urllib3==2.6.3"], ) diff --git a/services/transfer-classifier/setup.py b/services/transfer-classifier/setup.py index d744a2d6..fbb4922c 100644 --- a/services/transfer-classifier/setup.py +++ b/services/transfer-classifier/setup.py @@ -8,7 +8,7 @@ install_requires=[ "python-dateutil>=2.8", "boto3>=1.18", - "PyArrow==22.0.0", - "urllib3==1.26.18", + "PyArrow==23.0.0", + "urllib3==2.6.3", ], )