From 5047c2a4052946424ce139fe111135f6d7c0fe0b Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 19 Sep 2024 17:23:51 +0200 Subject: [PATCH] README: update actions/cache to v4 (#243) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4689e80..fdfe341 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ In order to mitigate issues regarding rate limiting or to reduce stress on exter ```yml - name: Restore lychee cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .lycheecache key: cache-lychee-${{ github.sha }} @@ -114,7 +114,7 @@ If you need more control over when caches are restored and saved, you can split ```yml - name: Restore lychee cache id: restore-cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: .lycheecache key: cache-lychee-${{ github.sha }} @@ -126,7 +126,7 @@ If you need more control over when caches are restored and saved, you can split args: "--base . --cache --max-cache-age 1d ." - name: Save lychee cache - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 if: always() with: path: .lycheecache