Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
607 B
YAML
27 lines
607 B
YAML
name: Links
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * *" # Every day at midnight
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/links.yml"
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
name: lychee
|
|
timeout-minutes: 15
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: lycheeverse/lychee-action@v1.8.0
|
|
with:
|
|
# Fail action on broken links
|
|
fail: true
|
|
args: --exclude-path vendor --exclude-path releases --timeout 30 --no-progress './**/*.md'
|
|
format: markdown
|
|
# Write GitHub job summary
|
|
jobSummary: true
|