forked from siemens/wfx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: replace markdown-link-check with lychee
Replace markdown-link-check with lychee to reduce maintenance burden, as the current version has been broken for 2 months [1]. [1] tcort/markdown-link-check#369 Signed-off-by: Michael Adler <[email protected]>
- Loading branch information
1 parent
aee20ca
commit dbaabc3
Showing
8 changed files
with
27 additions
and
33 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
# SPDX-FileCopyrightText: 2025 Siemens AG | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Author: Michael Adler <[email protected]> | ||
set -euo pipefail | ||
|
||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | ||
|
||
. "$SCRIPT_DIR/versions.env" | ||
|
||
echo "Installing lychee $LYCHEE_VERSION" | ||
curl -Ls "https://github.com/lycheeverse/lychee/releases/download/lychee-v${LYCHEE_VERSION}/lychee-x86_64-unknown-linux-musl.tar.gz" | | ||
tar --extract --gzip --directory=/usr/local/bin lychee |
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# SPDX-FileCopyrightText: 2025 Siemens AG | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Author: Michael Adler <[email protected]> | ||
no_progress = true | ||
exclude_loopback = true | ||
accept = ["200..=204", "429"] |
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