Skip to content

Commit 9cc116a

Browse files
committed
Add setup-dotnet actions needed by ubuntu runners
1 parent 03236d1 commit 9cc116a

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
@@ -30,6 +30,11 @@ jobs:
3030
uses: actions/[email protected]
3131
with:
3232
fetch-depth: 0
33+
- name: Setup .NET SDK
34+
uses: actions/[email protected]
35+
with:
36+
global-json-file: global.json
37+
dotnet-version: 8.0.x
3338
- name: Run MinVer
3439
uses: Particular/[email protected]
3540
- name: Validate build version

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
uses: actions/[email protected]
1818
with:
1919
fetch-depth: 0
20+
- name: Setup .NET SDK
21+
uses: actions/[email protected]
22+
with:
23+
global-json-file: global.json
24+
dotnet-version: 8.0.x
2025
- name: Run MinVer
2126
uses: Particular/[email protected]
2227
- 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)