We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69ccd61 commit 30f17a2Copy full SHA for 30f17a2
.github/workflows/link_checker.yml
@@ -28,7 +28,8 @@ jobs:
28
- uses: actions/checkout@v4
29
30
- name: Restore lychee cache
31
- uses: actions/cache@v4
+ id: restore_cache
32
+ uses: actions/cache/restore@v4
33
with:
34
path: .lycheecache
35
key: cache-lychee-${{ github.sha }}
@@ -39,12 +40,23 @@ jobs:
39
40
id: lychee_run
41
42
args: |
- --cache
43
--verbose
44
--no-progress
45
+ --cache
46
+ --cache-exclude-status 400..
47
+ --max-concurrency 1
48
+ --max-retries 1
49
+ --retry-wait-time 60
50
'.'
51
continue-on-error: true
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
+
60
- name: List open issues
61
if: github.ref == 'refs/heads/master'
62
id: open_issues
0 commit comments