Skip to content

chore(deps): Bump the actions group across 1 directory with 7 updates #150

chore(deps): Bump the actions group across 1 directory with 7 updates

chore(deps): Bump the actions group across 1 directory with 7 updates #150

Workflow file for this run

name: Link checker
on:
push:
branches: [main]
paths:
- "**.md"
- "lychee.toml"
- ".github/workflows/links.yml"
pull_request:
paths:
- "**.md"
- "lychee.toml"
- ".github/workflows/links.yml"
schedule:
- cron: "0 6 * * 1"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: links-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
links:
name: Check links
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Harden runner
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Run lychee
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2
with:
args: --config lychee.toml '**/*.md'
fail: true