From a8cc06d142e2cd5149a7d870e1a783ad0fa9191d Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Tue, 10 Jan 2023 12:02:11 +0000 Subject: [PATCH] Fixed heading --- CACHING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CACHING.md b/CACHING.md index d8a76e4..9f08311 100644 --- a/CACHING.md +++ b/CACHING.md @@ -307,7 +307,7 @@ In case cache gets download using restore keys, there's a chance that some depen key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} ``` -### Saving intermediate private build artifacts and restoring in another workflow +### Saving cache once and reusing in multiple workflows In case of multi-module projects, where the built artifact of one project needs to be reused in subsequent child modules, the need of rebuilding the parent module again and again with every build can be eliminated. The `actions/cache` or `actions/cache/save` action can be used to build and save the parent module artifact once, and restored multiple times while building the child modules.