From cba90f73b9c7e8fb71e819de0941a0e85b50b918 Mon Sep 17 00:00:00 2001 From: "Piotr P. Karwasz" Date: Tue, 10 Jun 2025 13:21:08 +0200 Subject: [PATCH] Fix incorrect key syntax in `actions/cache/save` The `key` parameter for the `actions/cache/save` action introduced in #409 is not evaluated due to missing expression syntax. --- .github/workflows/deploy-site-reusable.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-site-reusable.yaml b/.github/workflows/deploy-site-reusable.yaml index 9c6314fc..27f49134 100644 --- a/.github/workflows/deploy-site-reusable.yaml +++ b/.github/workflows/deploy-site-reusable.yaml @@ -108,7 +108,7 @@ jobs: - name: Save Node.js cache uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # 4.2.3 with: - key: steps.nodejs-cache-restore.outputs.cache-primary-key + key: ${{ steps.nodejs-cache-restore.outputs.cache-primary-key }} path: node_modules - name: Create the target branch