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 fcc004c commit 77ec7a8Copy full SHA for 77ec7a8
.github/workflows/check-urls.yml
@@ -9,13 +9,13 @@ jobs:
9
check-urls:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
13
14
- - name: Check URLs
15
- run: |
16
- curl -LO 'https://github.com/lycheeverse/lychee/releases/download/v0.10.0/lychee-v0.10.0-x86_64-unknown-linux-gnu.tar.gz'
17
- tar -xvzf lychee-v0.10.0-x86_64-unknown-linux-gnu.tar.gz
18
- chmod +x lychee
19
- ./lychee "content/*/*/*.md" --no-progress --verbose --require-https
20
- env:
21
- CLICOLOR_FORCE: 1
+ - name: Link Checker
+ id: lychee
+ uses: lycheeverse/lychee-action@v1
+ with:
+ args: --no-progress --verbose --require-https 'content/*/*/*.md'
+ fail: true
+ env:
+ CLICOLOR_FORCE: 1
0 commit comments