-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #236 from shinji-san/release-v0.12.0
Release - v0.12.0 Added - Added .NET 9.0 support - Added use-case interfaces `IMakeSharesUseCase` and `IReconstructUseCase` to the `SecretSharingDotNet` project. - Added a guide to the `README.md` file on how to use the use-case interfaces with dependency injection. Changed - Changed the `Sqrt` signature in the `BigIntCalculator` class from property to method. - Changed method visibility from `public` to `protected` in the `BigIntCalculator`and `Calculator` classes to restrict access. Removed - Removed .NET 7 support, because it retires on May 14, 2024. See [.NET and .NET Core Support Policy](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core). - Removed .NET 6 support, because it retires on November 12, 2024. See [.NET and .NET Core Support Policy](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core). Resolves: #236
- Loading branch information
Showing
20 changed files
with
299 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,24 +41,19 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET 6 | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: 6.0.416 | ||
|
||
- name: Setup .NET 7 | ||
uses: actions/[email protected] | ||
- name: Setup .NET 8 | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: 7.0.403 | ||
dotnet-version: 8.0.404 | ||
|
||
- name: Setup .NET 8 | ||
uses: actions/setup-dotnet@v4.0.0 | ||
- name: Setup .NET 9 | ||
uses: actions/setup-dotnet@v4.1.0 | ||
with: | ||
dotnet-version: 8.0.100 | ||
dotnet-version: 9.0.100 | ||
|
||
- name: .NET Core SxS | ||
run: | | ||
rsync -a ${DOTNET_ROOT/8.0.100/7.0.403/6.0.416}/* $DOTNET_ROOT/ | ||
rsync -a ${DOTNET_ROOT/8.0.404/9.0.100}/* $DOTNET_ROOT/ | ||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,20 +18,15 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET 6 | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: 6.0.416 | ||
|
||
- name: Setup .NET 7 | ||
uses: actions/[email protected] | ||
- name: Setup .NET 8 | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: 7.0.403 | ||
dotnet-version: 8.0.404 | ||
|
||
- name: Setup .NET 8 | ||
uses: actions/setup-dotnet@v4.0.0 | ||
- name: Setup .NET 9 | ||
uses: actions/setup-dotnet@v4.1.0 | ||
with: | ||
dotnet-version: 8.0.100 | ||
dotnet-version: 9.0.100 | ||
|
||
- name: Restore | ||
run: dotnet restore SecretSharingDotNet.sln | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,20 +16,15 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET 6 | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: 6.0.416 | ||
|
||
- name: Setup .NET 7 | ||
uses: actions/[email protected] | ||
- name: Setup .NET 8 | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: 7.0.403 | ||
dotnet-version: 8.0.404 | ||
|
||
- name: Setup .NET 8 | ||
uses: actions/setup-dotnet@v4.0.0 | ||
- name: Setup .NET 9 | ||
uses: actions/setup-dotnet@v4.1.0 | ||
with: | ||
dotnet-version: 8.0.100 | ||
dotnet-version: 9.0.100 | ||
|
||
- name: Decrypt large secret | ||
run: ./.github/secrets/decrypt_publisher_snk.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.