Skip to content

Commit 0e3a4b3

Browse files
authored
Update DocLinkChecker to work on .NET 8 (#288)
* Update DocLinkChecker to work on .NET 8 - Prompted by the recent version increase from `windows-2022` to `windows-2025` in the GitHub Actions runner image for `-latest` * Update DocLinkChecker version in the actions file too
1 parent 298b777 commit 0e3a4b3

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"doclinkchecker": {
12-
"version": "1.19.0",
12+
"version": "1.37.0",
1313
"commands": [
1414
"DocLinkChecker"
1515
]

.github/workflows/build.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,8 @@ jobs:
1616
with:
1717
submodules: true
1818

19-
- name: Setup .NET Core SDK
20-
uses: actions/setup-dotnet@v4
21-
with:
22-
dotnet-version: 8.x
23-
2419
- name: Install DocLinkChecker
25-
run: dotnet tool install DocLinkChecker --version 1.19.0
20+
run: dotnet tool install DocLinkChecker --version 1.37.0
2621

2722
# Check for missing / broken links in the *.md files prior to building the website
2823
- name: Check Documentation Links

0 commit comments

Comments
 (0)