Skip to content
This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Commit 4a13cc1

Browse files
committed
(maint) added net6.0 to GH-Actions
1 parent 97aaeba commit 4a13cc1

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,19 @@ jobs:
4444
uses: actions/checkout@v2
4545
- name: Fetch all tags and branches
4646
run: git fetch --prune --unshallow
47+
- uses: actions/[email protected]
48+
with:
49+
# codecov needs 2.1
50+
dotnet-version: '2.1.818'
51+
- uses: actions/[email protected]
52+
with:
53+
dotnet-version: '3.1.x'
54+
- uses: actions/[email protected]
55+
with:
56+
dotnet-version: '5.0.x'
57+
- uses: actions/[email protected]
58+
with:
59+
dotnet-version: '6.0.x'
4760
- name: Cache Tools
4861
uses: actions/cache@v2
4962
with:

.github/workflows/codeql-analysis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,20 @@ jobs:
3434
with:
3535
fetch-depth: 0
3636

37+
- uses: actions/[email protected]
38+
with:
39+
# codecov needs 2.1
40+
dotnet-version: '2.1.818'
41+
- uses: actions/[email protected]
42+
with:
43+
dotnet-version: '3.1.x'
44+
- uses: actions/[email protected]
45+
with:
46+
dotnet-version: '5.0.x'
47+
- uses: actions/[email protected]
48+
with:
49+
dotnet-version: '6.0.x'
50+
3751
- name: Cache Tools
3852
uses: actions/cache@v2
3953
with:

global.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"sdk": {
3+
"allowPrerelease": true,
4+
"version": "6.0.100",
5+
"rollForward": "latestFeature"
6+
}
7+
}

0 commit comments

Comments
 (0)