From 890a8a919c043610305b705d8e2eb0f5118c9836 Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Tue, 21 Oct 2025 16:18:44 +0530 Subject: [PATCH] update --- docs/advanced-usage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced-usage.md b/docs/advanced-usage.md index 80de6b07..2cfff3b6 100644 --- a/docs/advanced-usage.md +++ b/docs/advanced-usage.md @@ -303,7 +303,7 @@ steps: **Restore-Only Cache** ```yaml -## In some workflows, you may want to restore a cache without saving it. This can help: +## reduce cache writes and storage usage in workflows that only need to read from cache jobs: build: runs-on: ubuntu-latest @@ -327,7 +327,7 @@ jobs: - run: npm install ``` -> **Note**: Using a restore-only cache avoids redundant writes to the cache, which can reduce workflow time and minimize cache storage usage, as referenced in cache scenarions for [Node – npm](https://github.com/actions/cache/blob/main/examples.md#node---npm). +> **Note**: Using a restore-only cache avoids redundant writes to the cache, which can reduce workflow time and minimize cache storage usage, as referenced in cache scenarios for [Node – npm](https://github.com/actions/cache/blob/main/examples.md#node---npm). ## Multiple Operating Systems and Architectures