We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7173a1b commit e9f1320Copy full SHA for e9f1320
.github/workflows/link-check.yml
@@ -15,11 +15,9 @@ jobs:
15
- name: Checkout
16
uses: actions/checkout@v4
17
18
- - name: Update CA certificates
19
- run: sudo update-ca-certificates
20
-
21
- name: Link Checker
22
id: lychee
23
uses: lycheeverse/lychee-action@v2
24
with:
25
- args: --verbose --no-progress './content/**/*.md' './content/**/*.html' './content/**/*.rst'
+ # NOTE: Lychee (and sphinx) encounter issues with SSL certificates for INCF URLs, so use --insecure
+ args: --verbose --no-progress './content/**/*.md' './content/**/*.html' './content/**/*.rst' --insecure
0 commit comments