Skip to content

Commit acc1d0a

Browse files
committed
build: update workflows to use dotnet 8
Signed-off-by: Kenny Pflug <kenny.pflug@live.de>
1 parent 2e8a094 commit acc1d0a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v3
2020
with:
21-
dotnet-version: 7.0.x
21+
dotnet-version: 8.0.x
2222
- name: Restore dependencies
2323
run: dotnet restore ./Code/Light.GuardClauses.AllProjects.sln
2424
- name: Build Analyzer

.github/workflows/release-on-nuget.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
dotnetVersion:
99
description: "The version of .NET to use"
1010
required: false
11-
default: "7.0.x"
11+
default: "8.0.x"
1212

1313
jobs:
1414
release-to-nuget:
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup .NET
2121
uses: actions/setup-dotnet@v3
2222
with:
23-
dotnet-version: ${{ github.event.inputs.dotnetVersion || '7.0.x' }}
23+
dotnet-version: ${{ github.event.inputs.dotnetVersion || '8.0.x' }}
2424
- name: Prepare SNK file
2525
env:
2626
LIGHT_GUARDCLAUSES_SNK: ${{ secrets.LIGHT_GUARDCLAUSES_SNK }}

0 commit comments

Comments
 (0)