Skip to content

Commit e6653b7

Browse files
committed
Updating framework version in builds
1 parent c014e6e commit e6653b7

5 files changed

+7
-7
lines changed

.github/workflows/deploy_tool_nupkg.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
name: Create dotnet tool NuGet package
99
runs-on: ubuntu-latest
10-
container: mcr.microsoft.com/dotnet/sdk:6.0
10+
container: mcr.microsoft.com/dotnet/sdk:8.0
1111
steps:
1212
- name: Check out repository
1313
uses: actions/checkout@v3

.github/workflows/dotnet-build-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
build:
1111
name: Build and test .NET projects
1212
runs-on: ubuntu-latest
13-
container: mcr.microsoft.com/dotnet/sdk:6.0
13+
container: mcr.microsoft.com/dotnet/sdk:8.0
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v2
1818
with:
19-
dotnet-version: 6.0.x
19+
dotnet-version: 8.0.x
2020
- name: Restore dependencies
2121
run: dotnet restore
2222
- name: Build
@@ -28,4 +28,4 @@ jobs:
2828
uses: actions/upload-artifact@v4
2929
with:
3030
name: debug-build
31-
path: /home/runner/work/data-migration-desktop-tool/data-migration-desktop-tool/Core/Cosmos.DataTransfer.Core/bin/Debug/net6.0 #path/to/artifact/ # or path/to/artifact
31+
path: /home/runner/work/data-migration-desktop-tool/data-migration-desktop-tool/Core/Cosmos.DataTransfer.Core/bin/Debug/net8.0 #path/to/artifact/ # or path/to/artifact

.github/workflows/internal-test-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build-package:
1010
name: Build self-contained executables
1111
runs-on: ubuntu-latest
12-
container: mcr.microsoft.com/dotnet/sdk:6.0
12+
container: mcr.microsoft.com/dotnet/sdk:8.0
1313
steps:
1414
- name: Check .NET version
1515
run: dotnet --version

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
build-package:
4545
name: Build self-contained executables
4646
runs-on: ubuntu-latest
47-
container: mcr.microsoft.com/dotnet/sdk:6.0
47+
container: mcr.microsoft.com/dotnet/sdk:8.0
4848
steps:
4949
- name: Check .NET version
5050
run: dotnet --version

.github/workflows/validate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build-test:
99
name: Build and test .NET projects
1010
runs-on: ubuntu-latest
11-
container: mcr.microsoft.com/dotnet/sdk:6.0
11+
container: mcr.microsoft.com/dotnet/sdk:8.0
1212
steps:
1313
- name: Check .NET version
1414
run: dotnet --version

0 commit comments

Comments
 (0)