Skip to content

Commit

Permalink
Update actions/upload-artifact action to v3 (#90)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <[email protected]>
  • Loading branch information
renovate[bot] and renovate-bot authored Mar 7, 2022
1 parent 5663816 commit dd64d9a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ jobs:
if: ${{ matrix.os == 'ubuntu-latest' }}

- name: 🔼 Upload packages as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
name: nuget
path: artifacts/nuget/

- name: 🔼 Upload global.json as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
name: global-json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ jobs:
run: dotnet pack --configuration Release --no-build

- name: 🔼 Upload packages as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: nuget
path: artifacts/nuget/

- name: 🔼 Upload global.json as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: global-json
path: global.json
Expand Down

0 comments on commit dd64d9a

Please sign in to comment.