Skip to content

Commit 5c9bc85

Browse files
Fix workflows/dotnet.yml
1 parent ec02469 commit 5c9bc85

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up .NET
4848
uses: actions/setup-dotnet@v3
4949
with:
50-
dotnet-version: '6.x'
50+
dotnet-version: '9.x'
5151

5252
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5353
# If this step fails, then you should remove it and run the build manually (see below)

.github/workflows/docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
with:
3030
fetch-depth: 0
3131

32-
- name: Set up .NET 8
32+
- name: Set up .NET 9
3333
uses: actions/setup-dotnet@v3
3434
with:
35-
dotnet-version: '8.x'
35+
dotnet-version: '9.x'
3636

3737
# Install the cosign tool except on PR
3838
# https://github.com/sigstore/cosign-installer

.github/workflows/dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
fetch-depth: 0
2424
submodules: true
2525

26-
- name: Set up .NET 8
26+
- name: Set up .NET 9
2727
uses: actions/setup-dotnet@v3
2828
with:
29-
dotnet-version: '8.x'
29+
dotnet-version: '9.x'
3030

3131
- name: Restore dependencies
32-
run: dotnet restore "ModelCompiler Solution.sln"
32+
run: dotnet restore "ModelCompiler.sln"
3333

3434
- name: Build
35-
run: dotnet build --no-restore --configuration Docker "ModelCompiler Solution.sln"
35+
run: dotnet build --no-restore --configuration Docker "ModelCompiler.sln"
3636

3737

3838

0 commit comments

Comments
 (0)