mirror of
https://github.com/containerd/containerd.git
synced 2026-08-12 22:16:27 +00:00
Bumps [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action) from 2.5.0 to 2.6.1.
- [Release notes](https://github.com/lycheeverse/lychee-action/releases)
- [Commits](5c4ee84814...885c65f3dc)
---
updated-dependencies:
- dependency-name: lycheeverse/lychee-action
dependency-version: 2.6.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
31 lines
781 B
YAML
31 lines
781 B
YAML
name: Links
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * *" # Every day at midnight
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/links.yml"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'containerd/containerd'
|
|
name: lychee
|
|
timeout-minutes: 15
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
|
|
- uses: lycheeverse/lychee-action@885c65f3dc543b57c898c8099f4e08c8afd178a2 # v2.6.1
|
|
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
|