mirror of
https://github.com/vim/vim.git
synced 2025-12-13 20:36:39 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... closes: #18803 Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
16 lines
364 B
YAML
16 lines
364 B
YAML
# .github/workflows/link-check.yml
|
|
name: Check Links
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 3 * * 0' # Every Sunday at 03:00 UTC
|
|
jobs:
|
|
lychee:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Run Lychee
|
|
uses: lycheeverse/lychee-action@v2
|
|
with:
|
|
args: --verbose --config ci/lychee.toml .
|