From 20b3df9c9f5851553dee8d44e7c5d4b3c56bc0a7 Mon Sep 17 00:00:00 2001 From: Anthony Brown Date: Tue, 26 May 2026 08:18:30 +0100 Subject: [PATCH 1/2] add back in cache steps --- azure/common/apigee-build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure/common/apigee-build.yml b/azure/common/apigee-build.yml index e35a237..1d922ae 100644 --- a/azure/common/apigee-build.yml +++ b/azure/common/apigee-build.yml @@ -163,6 +163,9 @@ jobs: inputs: versionSpec: "$(PY_VER)" + - ${{ each cache_step in parameters.cache_steps }}: + - ${{ cache_step }} + - bash: | n=0 until [ "$n" -ge 3 ] From a23b20e35512e5aa55323425a48485120563f998 Mon Sep 17 00:00:00 2001 From: Sathiyakumar Ganesan Date: Tue, 26 May 2026 10:00:04 +0100 Subject: [PATCH 2/2] Exclude S3 cache actions from cache steps processing --- azure/common/apigee-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure/common/apigee-build.yml b/azure/common/apigee-build.yml index 1d922ae..1170c97 100644 --- a/azure/common/apigee-build.yml +++ b/azure/common/apigee-build.yml @@ -164,7 +164,8 @@ jobs: versionSpec: "$(PY_VER)" - ${{ each cache_step in parameters.cache_steps }}: - - ${{ cache_step }} + - ${{ if not(startsWith(cache_step.task, 's3-cache-action@')) }}: + - ${{ cache_step }} - bash: | n=0