Skip to content

Commit 5047c2a

Browse files
README: update actions/cache to v4 (#243)
1 parent 64c64df commit 5047c2a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ In order to mitigate issues regarding rate limiting or to reduce stress on exter
9494

9595
```yml
9696
- name: Restore lychee cache
97-
uses: actions/cache@v3
97+
uses: actions/cache@v4
9898
with:
9999
path: .lycheecache
100100
key: cache-lychee-${{ github.sha }}
@@ -114,7 +114,7 @@ If you need more control over when caches are restored and saved, you can split
114114
```yml
115115
- name: Restore lychee cache
116116
id: restore-cache
117-
uses: actions/cache/restore@v3
117+
uses: actions/cache/restore@v4
118118
with:
119119
path: .lycheecache
120120
key: cache-lychee-${{ github.sha }}
@@ -126,7 +126,7 @@ If you need more control over when caches are restored and saved, you can split
126126
args: "--base . --cache --max-cache-age 1d ."
127127
128128
- name: Save lychee cache
129-
uses: actions/cache/save@v3
129+
uses: actions/cache/save@v4
130130
if: always()
131131
with:
132132
path: .lycheecache

0 commit comments

Comments
 (0)