Bumps the actions group with 1 update: [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action).
Updates `lycheeverse/lychee-action` from 2.5.0 to 2.6.0
- [Release notes](https://github.com/lycheeverse/lychee-action/releases)
- [Commits](5c4ee84814...01a5c94d8e)
---
updated-dependencies:
- dependency-name: lycheeverse/lychee-action
dependency-version: 2.6.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: actions
...
Signed-off-by: dependabot[bot] <support@github.com>
27 lines
646 B
YAML
27 lines
646 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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@01a5c94d8e012550040658854b90a7a7301e75ca # v2.6.0
|
|
with:
|
|
args: >-
|
|
--verbose --no-progress
|
|
--exclude-path '\.github'
|
|
--max-redirects 10
|
|
--accept 200,204,206,403,429
|
|
'./*.md'
|