From e7e45c76148e3e6275cc14ebadd7a967a0875e49 Mon Sep 17 00:00:00 2001 From: NautiyalVikas1 <157499123+NautiyalVikas1@users.noreply.github.com> Date: Wed, 16 Apr 2025 15:57:24 +0100 Subject: [PATCH 1/6] APM-6138-DependabotFix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e58e756..72042c2e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The S3 cache action is an Azure Pipelines extension to be used with build pipelines in Azure DevOps to give us better control of our caching dependencies when deploying APIs. The task is not exclusive to dependencies and can cache a given file or folder. ## How to use -The s3-cache-action task is designed to add an easy way to provide caching of dependencies. To demonstrate, let's examine the following build definition snippet: +The s3-cache-action task is designed to add an easy way to provide caching of dependencies. To demonstrate, let's examine the following build definition snippet: ```yaml - task: s3-cache-action@1 inputs: From 52ce796f92befb19d2ee5dcd27b809156fbde915 Mon Sep 17 00:00:00 2001 From: NautiyalVikas1 <157499123+NautiyalVikas1@users.noreply.github.com> Date: Wed, 16 Apr 2025 15:59:50 +0100 Subject: [PATCH 2/6] APM-6138-DependabotFix --- azure/azure-build-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure/azure-build-pipeline.yml b/azure/azure-build-pipeline.yml index ba7673ea..dc1c1c16 100644 --- a/azure/azure-build-pipeline.yml +++ b/azure/azure-build-pipeline.yml @@ -48,9 +48,9 @@ stages: versionSpec: "3.8" - task: NodeTool@0 - displayName: "Use Node 13" + displayName: "Use Node 18" inputs: - versionSpec: '13.x' + versionSpec: '18.x' - bash: | node --version From ceb9d08e685446f92492662985de9a8be4b59c25 Mon Sep 17 00:00:00 2001 From: NautiyalVikas1 <157499123+NautiyalVikas1@users.noreply.github.com> Date: Thu, 17 Apr 2025 08:39:40 +0100 Subject: [PATCH 3/6] APM-6138-DependabotFix --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ae9c16f3..76ae23d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Alex Carrie "] license = "MIT" [tool.poetry.dependencies] -python = "^3.8" +python = "^3.9" docker-compose-wait = "^1.2.2" [tool.poetry.dev-dependencies] From ad4df43c2f952233f72ade65ea1c85a7b4bf1943 Mon Sep 17 00:00:00 2001 From: NautiyalVikas1 <157499123+NautiyalVikas1@users.noreply.github.com> Date: Thu, 17 Apr 2025 08:45:09 +0100 Subject: [PATCH 4/6] APM-6138-DependabotFix --- azure/azure-build-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure/azure-build-pipeline.yml b/azure/azure-build-pipeline.yml index dc1c1c16..480a2f97 100644 --- a/azure/azure-build-pipeline.yml +++ b/azure/azure-build-pipeline.yml @@ -43,9 +43,9 @@ stages: displayName: Print AWS info - task: UsePythonVersion@0 - displayName: "Use Python 3.8" + displayName: "Use Python 3.9" inputs: - versionSpec: "3.8" + versionSpec: "3.9" - task: NodeTool@0 displayName: "Use Node 18" From b9d1768159d26f7817cc7dab478c05f49deade71 Mon Sep 17 00:00:00 2001 From: NautiyalVikas1 <157499123+NautiyalVikas1@users.noreply.github.com> Date: Thu, 17 Apr 2025 08:47:33 +0100 Subject: [PATCH 5/6] APM-6138-DependabotFix --- .python-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.python-version b/.python-version index a08ffae0..11aaa068 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.8.2 +3.9.5 From a2bccbbdd4bd728e80552fbdb674016dd78b67c4 Mon Sep 17 00:00:00 2001 From: NautiyalVikas1 <157499123+NautiyalVikas1@users.noreply.github.com> Date: Thu, 17 Apr 2025 08:50:48 +0100 Subject: [PATCH 6/6] APM-6138-DependabotFix --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 76ae23d0..7261d70d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Alex Carrie "] license = "MIT" [tool.poetry.dependencies] -python = "^3.9" +python = ">=3.8,<4.0" docker-compose-wait = "^1.2.2" [tool.poetry.dev-dependencies]