Skip to content

Commit 0d84ea8

Browse files
committed
Updated github actions
1 parent d226f0e commit 0d84ea8

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,13 @@ jobs:
2121
strategy:
2222
matrix:
2323
os: [ubuntu-latest, windows-latest, macos-latest]
24-
version: [1, 2, 3]
25-
include:
26-
- version: 1
27-
configuration: ReleaseV1
28-
- version: 2
29-
configuration: ReleaseV2
30-
- version: 3
31-
configuration: Release
3224
runs-on: ${{ matrix.os }}
33-
3425
steps:
3526
- uses: actions/checkout@v2
3627
- name: Setup .NET Core
3728
uses: actions/setup-dotnet@v1
3829
with:
39-
dotnet-version: 6.0.x
40-
include-prerelease: True
30+
dotnet-version: 8.0.x
4131
- name: Install dependencies
4232
run: dotnet restore EntityFrameworkCore.Triggered.sln -p:Configuration=${{ matrix.configuration }}
4333
- name: Build
@@ -66,7 +56,7 @@ jobs:
6656
- name: Setup .NET Core
6757
uses: actions/setup-dotnet@v1
6858
with:
69-
dotnet-version: 6.0.x
59+
dotnet-version: 8.0.x
7060
include-prerelease: True
7161
- name: Install dependencies
7262
run: dotnet restore EntityFrameworkCore.Triggered.Samples.slnf

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup .NET Core
2626
uses: actions/setup-dotnet@v1
2727
with:
28-
dotnet-version: 6.0.x
28+
dotnet-version: 8.0.x
2929
- name: Create Release NuGet package
3030
run: |
3131
arrTag=(${GITHUB_REF//\// })

0 commit comments

Comments
 (0)