This is an automated email from the ASF dual-hosted git repository.
pkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git
The following commit(s) were added to refs/heads/main by this push:
new 12bdb03 Fix incorrect key syntax in `actions/cache/save` (#411)
12bdb03 is described below
commit 12bdb036166b026b52a7a4bc57dd860e20779c66
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Tue Jun 10 13:27:37 2025 +0200
Fix incorrect key syntax in `actions/cache/save` (#411)
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