mirror of
https://github.com/Ravencentric/awesome-arr.git
synced 2026-04-17 19:54:04 +02:00
Bumps the actions group with 2 updates: [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action) and [actions/setup-dotnet](https://github.com/actions/setup-dotnet). Updates `lycheeverse/lychee-action` from 2.7.0 to 2.8.0 - [Release notes](https://github.com/lycheeverse/lychee-action/releases) - [Commits](a8c4c7cb88...8646ba3053) Updates `actions/setup-dotnet` from 5.1.0 to 5.2.0 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](baa11fbfe1...c2fa09f4bd) --- updated-dependencies: - dependency-name: lycheeverse/lychee-action dependency-version: 2.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/setup-dotnet dependency-version: 5.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ravencentric <78981416+Ravencentric@users.noreply.github.com>
28 lines
646 B
YAML
28 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0
|
|
with:
|
|
args: >-
|
|
--verbose --no-progress
|
|
--exclude-path '\.github'
|
|
--max-redirects 10
|
|
--accept 200,204,206,403,429
|
|
'./*.md'
|