Skip to content

Commit 604d748

Browse files
authored
Merge branch 'main' into msbuild-wpf-warning
2 parents d18c53f + 0b94c77 commit 604d748

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

.github/workflows/docs.yml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ jobs:
3737
with:
3838
path: tools
3939
key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
40+
-
41+
name: Install .NET SDK 6.0.x
42+
uses: actions/setup-dotnet@v1
43+
with:
44+
dotnet-version: '6.0.x'
45+
include-prerelease: true
4046
-
4147
name: '[Prepare]'
4248
if: steps.cache-cake.outputs.cache-hit != 'true'
@@ -66,6 +72,17 @@ jobs:
6672
with:
6773
path: tools
6874
key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
75+
-
76+
name: Install .NET SDK 2.1.x
77+
uses: actions/setup-dotnet@v1
78+
with:
79+
dotnet-version: '2.1.x'
80+
-
81+
name: Install .NET SDK 6.0.x
82+
uses: actions/setup-dotnet@v1
83+
with:
84+
dotnet-version: '6.0.x'
85+
include-prerelease: true
6986
-
7087
name: '[Build Documentation]'
7188
shell: pwsh
@@ -79,7 +96,7 @@ jobs:
7996
arguments: --url-ignore /api/ --allow-hash-href --assume-extension --disable-external
8097
-
8198
name: '[Remark Lint]'
82-
uses: reviewdog/action-remark-lint@v4
99+
uses: reviewdog/action-remark-lint@v5
83100
with:
84101
github_token: ${{ secrets.GITHUB_TOKEN }}
85102
reporter: github-pr-check
@@ -111,6 +128,17 @@ jobs:
111128
with:
112129
path: tools
113130
key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
131+
-
132+
name: Install .NET SDK 2.1.x
133+
uses: actions/setup-dotnet@v1
134+
with:
135+
dotnet-version: '2.1.x'
136+
-
137+
name: Install .NET SDK 6.0.x
138+
uses: actions/setup-dotnet@v1
139+
with:
140+
dotnet-version: '6.0.x'
141+
include-prerelease: true
114142
-
115143
name: '[Publish Documentation]'
116144
if: ${{ github.event_name == 'push' }}

0 commit comments

Comments
 (0)