Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci: update workflows to use .NET 9
Signed-off-by: Kenny Pflug <[email protected]>
  • Loading branch information
feO2x committed Mar 25, 2025
commit 692c938568ea30cd108de3835098b978263d2a50
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore ./Code/Light.SharedCore.slnx
- name: Build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-on-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
dotnetVersion:
description: "The version of .NET to use"
required: false
default: "8.0.x"
default: "9.0.x"

jobs:
release-to-nuget:
Expand All @@ -18,9 +18,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ github.event.inputs.dotnetVersion || '8.0.x' }}
dotnet-version: ${{ github.event.inputs.dotnetVersion || '9.0.x' }}
- name: Prepare SNK file
env:
LIGHT_SHAREDCORE_SNK: ${{ secrets.LIGHT_SHAREDCORE_SNK }}
Expand Down