Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix readme #154

Merged
merged 2 commits into from
Aug 10, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:

- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v1.5.0
# If you always want to use the latest features, you can replace the version lycheeverse/lychee-action@master
uses: lycheeverse/lychee-action@v1.5.1
mre marked this conversation as resolved.
Show resolved Hide resolved
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

Expand Down Expand Up @@ -68,7 +69,8 @@ jobs:
- uses: actions/checkout@v3

- name: Link Checker
uses: lycheeverse/lychee-action@v1.5.0
# If you always want to use the latest features, you can replace the version lycheeverse/lychee-action@master
uses: lycheeverse/lychee-action@v1.5.1
with:
fail: true
env:
Expand Down Expand Up @@ -97,7 +99,8 @@ See [action.yml](./action.yml) for a full list of supported arguments and their

```yml
- name: Link Checker
uses: lycheeverse/lychee-action@v1.5.0
# If you always want to use the latest features, you can replace the version lycheeverse/lychee-action@master
uses: lycheeverse/lychee-action@v1.5.1
with:
# Check all markdown and html files in repo (default)
args: --verbose --no-progress './**/*.md' './**/*.html'
Expand All @@ -122,6 +125,7 @@ In order to mitigate issues regarding rate limiting or to reduce stress on exter
restore-keys: cache-lychee-

- name: Run lychee
# If you always want to use the latest features, you can replace the version lycheeverse/lychee-action@master
uses: lycheeverse/lychee-action@v1.5.1
with:
args: '--cache --max-cache-age 1d'
Expand Down