We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dde87d commit 181b977Copy full SHA for 181b977
.github/workflows/validate-links-on-push-pr.yml
@@ -18,6 +18,14 @@ jobs:
18
- name: Checkout repository
19
uses: actions/checkout@v6.0.2
20
21
+ - name: Restore lychee cache
22
+ id: restore-cache
23
+ uses: actions/cache/restore@v5.0.4
24
+ with:
25
+ path: .lycheecache
26
+ key: cache-lychee-${{ github.sha }}
27
+ restore-keys: cache-lychee-
28
+
29
- name: Validate links
30
uses: lycheeverse/lychee-action@v2.8.0
31
with:
@@ -29,3 +37,10 @@ jobs:
37
--exclude api\.star-history\.com --exclude ghostbrowser\.com
38
env:
39
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
40
41
+ - name: Save lychee cache
42
+ uses: actions/cache/save@v5.0.4
43
+ if: always()
44
45
46
+ key: ${{ steps.restore-cache.outputs.cache-primary-key }}
0 commit comments