Skip to content

Commit

Permalink
Updated versions for action template.
Browse files Browse the repository at this point in the history
  • Loading branch information
DJGosnell committed Sep 4, 2024
1 parent c7e89b2 commit ef20cda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true

- name: Install .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.*
source-url: https://api.nuget.org/v3/index.json
Expand All @@ -42,7 +42,7 @@ jobs:
run: dotnet test src/DtronixCommon.Tests -c Release

- name: Export artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: artifacts/*.nupkg

Expand All @@ -52,7 +52,7 @@ jobs:
id: tagName

- name: Create release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
name: "DtronixCommon ${{ steps.tagName.outputs.tag }} Released"
Expand Down

0 comments on commit ef20cda

Please sign in to comment.