-
-
Notifications
You must be signed in to change notification settings - Fork 3
.NET 8.0 への移行と依存パッケージの最新化 #29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ on: | |
| branches: [ master ] | ||
|
|
||
| env: | ||
| DOTNET_VERSION: 7.0.x | ||
| DOTNET_VERSION: 8.0.x | ||
|
|
||
| jobs: | ||
| build: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ on: | |
| tags: [ v* ] | ||
|
|
||
| env: | ||
| DOTNET_VERSION: 7.0.x | ||
| DOTNET_VERSION: 8.0.x | ||
|
|
||
|
Comment on lines
7
to
9
|
||
| jobs: | ||
| publish: | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,7 +1,7 @@ | ||||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||||
|
|
||||||
| <PropertyGroup> | ||||||
| <TargetFramework>net6.0</TargetFramework> | ||||||
| <TargetFramework>net8.0</TargetFramework> | ||||||
|
||||||
| <TargetFramework>net8.0</TargetFramework> | |
| <TargetFrameworks>net6.0;net8.0</TargetFrameworks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DOTNET_VERSION を 8.0.x に上げるタイミングで、actions/checkout と actions/setup-dotnet も v4 へ更新しておくのが安全です(v3 系は古い Node ランタイム依存のため、ランナー側の更新で将来的に動かなくなるリスクがあります)。