Skip to content

Commit f2d8949

Browse files
committed
Set GH actions target .NET SDK to 9.0.204
1 parent 877af6c commit f2d8949

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
dotnet-version: |
4646
8.0
47-
9.0
47+
9.0.204
4848
- uses: actions/checkout@v4
4949
- name: 'Run: Compile, Test, Pack, Publish'
5050
run: ./build.cmd Compile Test Pack Publish
@@ -81,7 +81,7 @@ jobs:
8181
with:
8282
dotnet-version: |
8383
8.0
84-
9.0
84+
9.0.204
8585
- uses: actions/checkout@v4
8686
- name: 'Run: Compile, Test, Pack, Publish'
8787
run: ./build.cmd Compile Test Pack Publish
@@ -98,7 +98,7 @@ jobs:
9898
with:
9999
dotnet-version: |
100100
8.0
101-
9.0
101+
9.0.204
102102
- uses: actions/checkout@v4
103103
- name: 'Run: Compile, Test, Pack, Publish'
104104
run: ./build.cmd Compile Test Pack Publish

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
dotnet-version: |
4848
8.0
49-
9.0
49+
9.0.204
5050
- uses: actions/checkout@v4
5151
- name: 'Run: Compile, Test, Pack'
5252
run: ./build.cmd Compile Test Pack
@@ -78,7 +78,7 @@ jobs:
7878
with:
7979
dotnet-version: |
8080
8.0
81-
9.0
81+
9.0.204
8282
- uses: actions/checkout@v4
8383
- name: 'Run: Compile, Test, Pack'
8484
run: ./build.cmd Compile Test Pack
@@ -90,7 +90,7 @@ jobs:
9090
with:
9191
dotnet-version: |
9292
8.0
93-
9.0
93+
9.0.204
9494
- uses: actions/checkout@v4
9595
- name: 'Run: Compile, Test, Pack'
9696
run: ./build.cmd Compile Test Pack

build/Build.CI.GitHubActions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected override GitHubActionsJob GetJobs(GitHubActionsImage image, IReadOnlyC
4646

4747
var newSteps = new List<GitHubActionsStep>(job.Steps);
4848

49-
newSteps.Insert(0, new GitHubActionsSetupDotNetStep(["8.0", "9.0"]));
49+
newSteps.Insert(0, new GitHubActionsSetupDotNetStep(["8.0", "9.0.204"]));
5050

5151
var onWindows = image.ToString().StartsWith("windows", StringComparison.OrdinalIgnoreCase);
5252
if (onWindows)

0 commit comments

Comments
 (0)