Skip to content

Commit 941e4b4

Browse files
committed
Update deprecated action in workflows
1 parent 7b17b91 commit 941e4b4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ jobs:
6868
- name: Package
6969
run: dotnet pack build.proj --version-suffix ${{ steps.version_suffix.outputs.version_suffix }}
7070
- name: Upload Artifacts
71-
uses: actions/upload-artifact@v2
71+
uses: actions/upload-artifact@v4
7272
with:
73-
name: nupkg
73+
name: nupkg-${{ matrix.runs-on }}
7474
path: ./bin/nupkg/*.nupkg
7575
- name: Push to GitHub Feed
7676
continue-on-error: true

.github/workflows/release-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
- name: Package
3030
run: dotnet pack build.proj
3131
- name: Upload Artifacts
32-
uses: actions/upload-artifact@v2
32+
uses: actions/upload-artifact@v4
3333
with:
34-
name: nupkg
34+
name: nupkg-${{ matrix.runs-on }}
3535
path: ./bin/nupkg/*.nupkg
3636
- name: Push to GitHub Feed
3737
shell: bash

0 commit comments

Comments
 (0)