-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated: GH Actions & dependencies upgrade
- Loading branch information
1 parent
9c6c948
commit 12e8663
Showing
11 changed files
with
40 additions
and
39 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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
shell: pwsh | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
|
@@ -36,21 +36,23 @@ jobs: | |
echo "Is Release?: $env:IS_RELEASE" | ||
echo "Release Tag: $env:RELEASE_TAG" | ||
- name: Setup .NET Core SDK (3.1) | ||
uses: actions/setup-dotnet@v1.8.2 | ||
- name: Setup .NET Core SDK (3.1.x) | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 3.1.x | ||
- name: Setup .NET Core SDK (5.0) | ||
uses: actions/[email protected] | ||
|
||
- name: Setup .NET Core SDK (5.0.x) | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 5.0.x | ||
|
||
- name: Setup .NET Core SDK (6.0.x) | ||
uses: actions/setup-dotnet@v1.8.2 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 6.0.x | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '14' | ||
|
||
|
@@ -95,7 +97,7 @@ jobs: | |
} | ||
- name: Upload NuGet Artifacts | ||
uses: actions/upload-artifact@v2.2.4 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
# Artifact name | ||
name: NuGet Packages | ||
|
@@ -104,7 +106,7 @@ jobs: | |
retention-days: 0 | ||
|
||
- name: Upload Changelog Artifact | ||
uses: actions/upload-artifact@v2.2.4 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
# Artifact name | ||
name: Changelog | ||
|
@@ -113,7 +115,7 @@ jobs: | |
retention-days: 0 | ||
|
||
- name: Upload Tools Artifact | ||
uses: actions/upload-artifact@v2.2.4 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
# Artifact name | ||
name: Tools | ||
|
@@ -122,7 +124,7 @@ jobs: | |
retention-days: 0 | ||
|
||
- name: Upload to GitHub Releases | ||
uses: softprops/action-gh-release@v0.1.14 | ||
uses: softprops/action-gh-release@v2 | ||
if: env.IS_RELEASE == 'true' | ||
with: | ||
# Path to load note-worthy description of changes in release from | ||
|
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
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
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