Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .build/Solution.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ RocketSurgeonGitHubActionsConfiguration configuration
{
DotNetVersion = "3.1.x"
},
new SetupDotNetStep("Use .NET Core 6.0 SDK")
new SetupDotNetStep("Use .NET Core 7.0 SDK")
{
DotNetVersion = "6.0.x"
DotNetVersion = "7.0.x"
},
}
);
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ jobs:
uses: actions/[email protected]
with:
dotnet-version: '3.1.x'
- name: 🔨 Use .NET Core 6.0 SDK
- name: 🔨 Use .NET Core 7.0 SDK
uses: actions/[email protected]
with:
dotnet-version: '6.0.x'
dotnet-version: '7.0.x'
- name: 🎁 dotnet tool restore
run: |
dotnet tool restore
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.414",
"version": "7.0.401",
"rollForward": "latestMinor"
}
}