Skip to content

chore: Update Karpenter MNG pattern to use updated module w/ pod iden… #1690

chore: Update Karpenter MNG pattern to use updated module w/ pod iden…

chore: Update Karpenter MNG pattern to use updated module w/ pod iden… #1690

name: Check Markdown links
on:
push:
branches:
- main
paths:
- "**/*.md"
pull_request:
branches:
- main
paths:
- "**/*.md"
permissions:
contents: read
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
egress-policy: audit
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- uses: actions/setup-node@v4
with:
node-version: '16.x'
- name: install markdown-link-check
run: npm install -g markdown-link-check@3.10.2
- name: markdown-link-check version
run: npm list -g markdown-link-check
- name: Run markdown-link-check on MD files
run: find docs -name "*.md" | xargs -n 1 markdown-link-check -q -c .github/workflows/linkcheck.json