Skip to content

build(deps): bump umbrelladocs/action-linkspector from 1.5.4 to 1.5.5 #733

build(deps): bump umbrelladocs/action-linkspector from 1.5.4 to 1.5.5

build(deps): bump umbrelladocs/action-linkspector from 1.5.4 to 1.5.5 #733

name: validate-markdown
# Author: @ralfhandl based on work of @MikeRalphson
# Issue: https://github.com/OAI/Overlay-Specification/issues/53
#
# This workflow validates markdown files in the versions directory matching *.md
#
# run this on pull-requests (creation and updates) and on manual trigger
on:
pull_request: {}
workflow_dispatch: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7 # checkout repo content
with:
fetch-depth: 0
- uses: actions/setup-node@v7 # setup Node.js
with:
node-version: "24.x"
- name: Lint markdown
run: npx --yes markdownlint-cli2 --config .markdownlint.yaml npx markdownlint-cli2 *.md schemas/**/*.md versions/*.md
# workaround for https://github.com/UmbrellaDocs/action-linkspector/issues/62
- name: Install Chrome
run: |
sudo apt-get update
sudo apt-get install -y google-chrome-stable
echo "PUPPETEER_SKIP_DOWNLOAD=true" >> $GITHUB_ENV
echo "PUPPETEER_EXECUTABLE_PATH=/usr/bin/google-chrome" >> $GITHUB_ENV
- name: Check links in markdown files
uses: umbrelladocs/action-linkspector@v1.5.5
with:
config_file: .linkspector.yml
reporter: github-check
fail_level: any
filter_mode: file