diff --git a/README.md b/README.md index 9b9f7a8..18b7c58 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ jobs: - name: Link Checker id: lychee - uses: lycheeverse/lychee-action@v1.6.0 + uses: lycheeverse/lychee-action@v1.6.1 env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} @@ -70,7 +70,7 @@ jobs: - uses: actions/checkout@v3 - name: Link Checker - uses: lycheeverse/lychee-action@vv1.6.0 + uses: lycheeverse/lychee-action@vv1.6.1 with: fail: true env: @@ -91,7 +91,7 @@ On top of that, the action also supports some additional arguments. | fail | `false` | Fail workflow run on error (i.e. when [lychee exit code][lychee-exit] is not 0). | | format | `markdown`, `json` | Summary output format. | | jobSummary | `false` | Write Github job summary (on Markdown output only). | -| lycheeVersion | `0.11.0` | Overwrite the lychee version to be used. | +| lycheeVersion | `0.11.1` | Overwrite the lychee version to be used. | | output | `lychee/results.md` | Summary output file path. | See [action.yml](./action.yml) for a full list of supported arguments and their default values. @@ -100,7 +100,7 @@ See [action.yml](./action.yml) for a full list of supported arguments and their ```yml - name: Link Checker - uses: lycheeverse/lychee-action@vv1.6.0 + uses: lycheeverse/lychee-action@vv1.6.1 with: # Check all markdown and html files in repo (default) args: --verbose --no-progress './**/*.md' './**/*.html' @@ -125,7 +125,7 @@ In order to mitigate issues regarding rate limiting or to reduce stress on exter restore-keys: cache-lychee- - name: Run lychee - uses: lycheeverse/lychee-action@vv1.6.0 + uses: lycheeverse/lychee-action@vv1.6.1 with: args: "--cache --max-cache-age 1d" ``` diff --git a/action.yml b/action.yml index ec876a2..90e5b5f 100644 --- a/action.yml +++ b/action.yml @@ -23,7 +23,7 @@ inputs: required: false lycheeVersion: description: "Use custom version of lychee link checker" - default: 0.11.0 + default: 0.11.1 required: false output: description: "Summary output file path"