Skip to content

Fix 599 (Ubuntu 26.04 compat) by statically linking libxml2.so #198

Fix 599 (Ubuntu 26.04 compat) by statically linking libxml2.so

Fix 599 (Ubuntu 26.04 compat) by statically linking libxml2.so #198

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
name: Markdown Links Check
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@6b3083af2869dc3314a0257a42f4af696cc79ba3 # v2.3.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Link Checker
uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8 # v2.9.0
with:
args: "--no-progress --verbose './**/*.md'"
fail: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}