@@ -47,7 +47,7 @@ parameter and serving the web pages (see the details in [entrypoint.sh](./entryp
4747 with:
4848 url: https://www.example.com/test123
4949 pages_path: ./build/
50- cmd_params: --buffer-size=8192 --concurrency =10 --skip-tls-verification --limit-redirections=5 --timeout=20 # muffet parameters
50+ cmd_params: --buffer-size=8192 --max-connections =10 --skip-tls-verification --limit-redirections=5 --timeout=20 # muffet parameters
5151 run_timeout: 600 # maximum amount of time to run muffet (default is set to 300 seconds)
5252` ` `
5353
@@ -58,21 +58,21 @@ Do you want to skip the docker build step? OK, the script mode is also available
5858 env:
5959 INPUT_URL: https://www.example.com/test123
6060 INPUT_PAGES_PATH: ./build/
61- INPUT_CMD_PARAMS: --buffer-size=8192 --concurrency =10 --skip-tls-verification # --skip-tls-verification is mandatory parameter when using https and "PAGES_PATH"
61+ INPUT_CMD_PARAMS: --buffer-size=8192 --max-connections =10 --skip-tls-verification # --skip-tls-verification is mandatory parameter when using https and "PAGES_PATH"
6262 run: wget -qO- https://raw.githubusercontent.com/ruzickap/action-my-broken-link-checker/v1/entrypoint.sh | bash
6363` ` `
6464
6565# # Parameters
6666
6767Environment variables used by `./entrypoint.sh` script.
6868
69- | Variable | Default | Description |
70- | ------------------- | ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
71- | `INPUT_CMD_PARAMS` | `--buffer-size=8192 --concurrency =10` | Command line parameters for URL checker [muffet](https://github.com/raviqqe/muffet) - details [here](https://github.com/raviqqe/muffet/blob/master/arguments.go#L16-L34) |
72- | `INPUT_DEBUG` | false | Enable debug mode for the `./entrypoint.sh` script (`set -x`) |
73- | `INPUT_PAGES_PATH` | | Relative path to the directory with local web pages |
74- | `INPUT_RUN_TIMEOUT` | 300 | Maximum number of seconds that URL checker can be running |
75- | `INPUT_URL` | (**Mandatory / Required**) | URL which will be checked |
69+ | Variable | Default | Description |
70+ | ------------------- | ----------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
71+ | `INPUT_CMD_PARAMS` | `--buffer-size=8192 --max-connections =10` | Command line parameters for URL checker [muffet](https://github.com/raviqqe/muffet) - details [here](https://github.com/raviqqe/muffet/blob/master/arguments.go#L16-L34) |
72+ | `INPUT_DEBUG` | false | Enable debug mode for the `./entrypoint.sh` script (`set -x`) |
73+ | `INPUT_PAGES_PATH` | | Relative path to the directory with local web pages |
74+ | `INPUT_RUN_TIMEOUT` | 300 | Maximum number of seconds that URL checker can be running |
75+ | `INPUT_URL` | (**Mandatory / Required**) | URL which will be checked |
7676
7777# # Full example
7878
@@ -183,7 +183,7 @@ jobs:
183183 env:
184184 INPUT_URL: https://${{ github.event.repository.name }}
185185 INPUT_PAGES_PATH: public
186- INPUT_CMD_PARAMS: --verbose --buffer-size=8192 --concurrency =10 --skip-tls-verification --exclude=linkedin.com
186+ INPUT_CMD_PARAMS: --verbose --buffer-size=8192 --max-connections =10 --skip-tls-verification --exclude=linkedin.com
187187 run: |
188188 wget -qO- https://raw.githubusercontent.com/ruzickap/action-my-broken-link-checker/v1/entrypoint.sh | bash
189189
@@ -250,7 +250,7 @@ jobs:
250250 env:
251251 INPUT_URL: https://${{ github.event.repository.owner.name }}.github.io/${{ github.event.repository.name }}
252252 INPUT_PAGES_PATH: .
253- INPUT_CMD_PARAMS: --buffer-size=8192 --concurrency =10 --skip-tls-verification
253+ INPUT_CMD_PARAMS: --buffer-size=8192 --max-connections =10 --skip-tls-verification
254254 run: |
255255 ln -s docs/.vuepress/dist ${{ github.event.repository.name }}
256256 wget -qO- https://raw.githubusercontent.com/ruzickap/action-my-broken-link-checker/v1/entrypoint.sh | bash
@@ -285,7 +285,7 @@ are not already installed on your system.
285285
286286` ` ` bash
287287export INPUT_URL="https://google.com"
288- export INPUT_CMD_PARAMS="--ignore-fragments --one-page-only --concurrency =10 --verbose"
288+ export INPUT_CMD_PARAMS="--ignore-fragments --one-page-only --max-connections =10 --verbose"
289289./entrypoint.sh
290290` ` `
291291
@@ -323,7 +323,7 @@ without touching your system:
323323
324324` ` ` bash
325325export INPUT_URL="https://google.com"
326- export INPUT_CMD_PARAMS="--ignore-fragments --one-page-only --concurrency =10 --verbose"
326+ export INPUT_CMD_PARAMS="--ignore-fragments --one-page-only --max-connections =10 --verbose"
327327docker run --rm -t -e INPUT_URL -e INPUT_CMD_PARAMS peru/my-broken-link-checker
328328` ` `
329329
0 commit comments