feat: Eliminated the use of temporary keys for tests with kubectl in … #1491
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- 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 |