File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 28
28
- uses : actions/checkout@v4
29
29
30
30
- name : Restore lychee cache
31
- uses : actions/cache@v4
31
+ id : restore_cache
32
+ uses : actions/cache/restore@v4
32
33
with :
33
34
path : .lycheecache
34
35
key : cache-lychee-${{ github.sha }}
@@ -39,12 +40,23 @@ jobs:
39
40
id : lychee_run
40
41
with :
41
42
args : |
42
- --cache
43
43
--verbose
44
44
--no-progress
45
+ --cache
46
+ --cache-exclude-status 400..
47
+ --max-concurrency 1
48
+ --max-retries 1
49
+ --retry-wait-time 60
45
50
'.'
46
51
continue-on-error : true
47
52
53
+ - name : Save lychee cache
54
+ uses : actions/cache/save@v4
55
+ if : ${{ !cancelled() }}
56
+ with :
57
+ path : .lycheecache
58
+ key : ${{ steps.restore_cache.outputs.cache-primary-key }}
59
+
48
60
- name : List open issues
49
61
if : github.ref == 'refs/heads/master'
50
62
id : open_issues
You can’t perform that action at this time.
0 commit comments