From dd84dab01cd1a361426d8e1d55306ac34c2dc075 Mon Sep 17 00:00:00 2001 From: Jonathan Cammisuli Date: Thu, 25 Jul 2024 12:18:59 -0400 Subject: [PATCH] chore(repo): use inputs instead of env for the cache step in agents (#27123) ## Current Behavior ## Expected Behavior ## Related Issue(s) Fixes # --- .nx/workflows/agents.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.nx/workflows/agents.yaml b/.nx/workflows/agents.yaml index f36006b16a..1087449295 100644 --- a/.nx/workflows/agents.yaml +++ b/.nx/workflows/agents.yaml @@ -14,14 +14,14 @@ launch-templates: uses: 'nrwl/nx-cloud-workflows/v4/workflow-steps/checkout/main.yaml' - name: Cache restore uses: 'nrwl/nx-cloud-workflows/v4/workflow-steps/cache/main.yaml' - env: - KEY: 'pnpm-lock.yaml' - PATHS: | + inputs: + key: 'pnpm-lock.yaml' + paths: | node_modules ~/.cache/Cypress ~/.cache/ms-playwright ~/.pnpm-store - BASE_BRANCH: 'master' + base-branch: 'master' - name: Install e2e deps script: | sudo apt-get update