Skip to content

Commit cf9ea57

Browse files
committed
Update workflows to use .NET 10 and setup-dotnet v4
Switched actions/setup-dotnet to v4 in build-master.yml and flowctl-release.yml. Updated .NET SDK version from 9.0.x/9.0.200 to 10.0.x to ensure builds and releases use the latest .NET. #138
1 parent 21f405e commit cf9ea57

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: Setup .NET Core
17-
uses: actions/setup-dotnet@v3.2.0
17+
uses: actions/setup-dotnet@v4
1818
with:
19-
dotnet-version: 9.0.200
19+
dotnet-version: 10.0.x
2020

2121
- name: Prep packages
2222
run: dotnet nuget add source --username ziagham --password ${{ secrets.GH_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{github.repository_owner}}/index.json"

.github/workflows/flowctl-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
5353
#Build/pack the project
5454
- name: Setup .NET
55-
uses: actions/setup-dotnet@v3.2.0
55+
uses: actions/setup-dotnet@v4
5656
with:
57-
dotnet-version: 9.0.x
57+
dotnet-version: 10.0.x
5858

5959
- name: Prep packages
6060
run: dotnet nuget add source --username ziagham --password ${{ secrets.GH_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{github.repository_owner}}/index.json"

0 commit comments

Comments
 (0)