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

Document the current directory for the cache argument example #193

Merged
merged 1 commit into from
May 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

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

(You don't need to configure the `GITHUB_TOKEN` yourself; it is automatically set by Github.)

If you always want to use the latest features but avoid breaking changes, you can replace the version with
If you always want to use the latest features but avoid breaking changes, you can replace the version with
`lycheeverse/lychee-action@v1`.

### Alternative approach:
Expand Down Expand Up @@ -129,7 +129,7 @@ In order to mitigate issues regarding rate limiting or to reduce stress on exter
- name: Run lychee
uses: lycheeverse/lychee-action@v1.8.0
with:
args: "--cache --max-cache-age 1d"
args: "--cache --max-cache-age 1d ."
```

It will compare and save the cache based on the given key.
Expand All @@ -149,7 +149,7 @@ If you need more control over when caches are restored and saved, you can split
- name: Run lychee
uses: lycheeverse/lychee-action@v1.8.0
with:
args: "--cache --max-cache-age 1d"
args: "--cache --max-cache-age 1d ."

- name: Save lychee cache
uses: actions/cache/save@v3
Expand Down