Skip to content

Commit

Permalink
Update deprecated action in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gusty committed Sep 17, 2024
1 parent 7b17b91 commit 941e4b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ jobs:
- name: Package
run: dotnet pack build.proj --version-suffix ${{ steps.version_suffix.outputs.version_suffix }}
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: nupkg
name: nupkg-${{ matrix.runs-on }}
path: ./bin/nupkg/*.nupkg
- name: Push to GitHub Feed
continue-on-error: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
- name: Package
run: dotnet pack build.proj
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: nupkg
name: nupkg-${{ matrix.runs-on }}
path: ./bin/nupkg/*.nupkg
- name: Push to GitHub Feed
shell: bash
Expand Down

0 comments on commit 941e4b4

Please sign in to comment.