mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 05:25:35 +00:00
In #8339 we pointed the markdown link checker action to a patched version that has the up-to-date version of the underlying check tool. In doing so, I missed the periodic cron job that runs the same workflow. Update it to use the patched version also.
13 lines
282 B
YAML
13 lines
282 B
YAML
name: Check Markdown links
|
|
on:
|
|
schedule:
|
|
- cron: '* */24 * * *'
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: creachadair/github-action-markdown-link-check@master
|
|
with:
|
|
folder-path: "docs"
|