Bumps the actions group with 1 update: [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action).
Updates `lycheeverse/lychee-action` from 2.4.1 to 2.5.0
- [Release notes](https://github.com/lycheeverse/lychee-action/releases)
- [Commits](82202e5e9c...5c4ee84814)
---
updated-dependencies:
- dependency-name: lycheeverse/lychee-action
dependency-version: 2.5.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: actions
...
Signed-off-by: dependabot[bot] <support@github.com>
28 lines
680 B
YAML
28 lines
680 B
YAML
name: Link Checker
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * 0"
|
|
|
|
jobs:
|
|
link-checker:
|
|
permissions:
|
|
contents: read
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@5c4ee84814c983aa7164eaee476f014e53ff3963 # v2.5.0
|
|
with:
|
|
args: >-
|
|
--verbose --no-progress
|
|
--exclude-path '\.github'
|
|
--max-redirects 10
|
|
--header "accept=*/*"
|
|
--accept 200,204,206,403,429
|
|
'./*.md'
|