This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a commit to branch fix/deploy-site-typo
in repository https://gitbox.apache.org/repos/asf/logging-parent.git

commit cba90f73b9c7e8fb71e819de0941a0e85b50b918
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Tue Jun 10 13:21:08 2025 +0200

    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 9c6314f..27f4913 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

Reply via email to