Skip to content

Commit 9fc6916

Browse files
authored
Add setup-dotnet actions needed by ubuntu runners
1 parent af7b41f commit 9fc6916

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/workflows/build-containers.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ jobs:
3535
uses: actions/[email protected]
3636
with:
3737
fetch-depth: 0
38+
- name: Setup .NET SDK
39+
uses: actions/[email protected]
40+
with:
41+
global-json-file: global.json
42+
dotnet-version: 8.0.x
3843
- name: Run MinVer
3944
uses: Particular/[email protected]
4045
- name: Validate build version

.github/workflows/build-db-container.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ jobs:
1919
uses: actions/[email protected]
2020
with:
2121
fetch-depth: 0
22+
- name: Setup .NET SDK
23+
uses: actions/[email protected]
24+
with:
25+
global-json-file: global.json
26+
dotnet-version: 8.0.x
2227
- name: Run MinVer
2328
uses: Particular/[email protected]
2429
- name: Validate build version

.github/workflows/container-integration-test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ jobs:
5353
uses: actions/[email protected]
5454
with:
5555
fetch-depth: 0
56+
- name: Setup .NET SDK
57+
uses: actions/[email protected]
58+
with:
59+
global-json-file: global.json
60+
dotnet-version: 8.0.x
5661
- name: Run MinVer
5762
uses: Particular/[email protected]
5863
- name: Log in to GitHub container registry

0 commit comments

Comments
 (0)