Skip to content

Commit

Permalink
Update CI to build with .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
EjPlatzer committed Nov 17, 2023
1 parent d38f286 commit 02b52b2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup .NET Core SDK 6
uses: actions/setup-dotnet@v2
- name: Setup .NET Core SDK 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: '8.x'

- name: Install dependencies
run: dotnet restore
Expand All @@ -31,10 +31,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup .NET Core SDK 6
- name: Setup .NET Core SDK 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: '8.x'

- name: Install dependencies
run: dotnet restore
Expand All @@ -60,10 +60,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup .NET Core SDK 6
- name: Setup .NET Core SDK 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: '8.x'

- name: Install dependencies
run: dotnet restore
Expand Down

0 comments on commit 02b52b2

Please sign in to comment.