Skip to content

Commit dd64d9a

Browse files
Update actions/upload-artifact action to v3 (#90)
Co-authored-by: Renovate Bot <[email protected]>
1 parent 5663816 commit dd64d9a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ jobs:
6868
if: ${{ matrix.os == 'ubuntu-latest' }}
6969

7070
- name: 🔼 Upload packages as artifact
71-
uses: actions/upload-artifact@v2
71+
uses: actions/upload-artifact@v3
7272
if: ${{ matrix.os == 'ubuntu-latest' }}
7373
with:
7474
name: nuget
7575
path: artifacts/nuget/
7676

7777
- name: 🔼 Upload global.json as artifact
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v3
7979
if: ${{ matrix.os == 'ubuntu-latest' }}
8080
with:
8181
name: global-json

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ jobs:
4949
run: dotnet pack --configuration Release --no-build
5050

5151
- name: 🔼 Upload packages as artifact
52-
uses: actions/upload-artifact@v2
52+
uses: actions/upload-artifact@v3
5353
with:
5454
name: nuget
5555
path: artifacts/nuget/
5656

5757
- name: 🔼 Upload global.json as artifact
58-
uses: actions/upload-artifact@v2
58+
uses: actions/upload-artifact@v3
5959
with:
6060
name: global-json
6161
path: global.json

0 commit comments

Comments
 (0)