Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

Commit

Permalink
chore(deps): update actions/upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 14, 2023
1 parent 0a3eec5 commit 4741ab7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Push NuGet package
run: dotnet nuget push "${{ env.NUGET_PACKAGE_PATH }}" --api-key ${{ secrets.NUGET_REGISTRY_GHPR_PAT }} --source "https://nuget.pkg.github.com/tomkerkhove/index.json"
- name: Upload NuGet Package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.NUGET_PACKAGE_NAME }}
path: ${{ env.NUGET_PACKAGE_PATH }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ jobs:
- name: Push NuGet package (HTTP)
run: dotnet nuget push "${{ env.NUGET_HTTP_PACKAGE_PATH }}" --api-key ${{ secrets.NUGET_REGISTRY_NUGETORG_APIKEY }} --source https://api.nuget.org/v3/index.json
- name: Upload NuGet Package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.NUGET_CORE_PACKAGE_NAME }}
path: ${{ env.NUGET_CORE_PACKAGE_PATH }}
- name: Upload NuGet Package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.NUGET_HTTP_PACKAGE_NAME }}
path: ${{ env.NUGET_HTTP_PACKAGE_PATH }}

0 comments on commit 4741ab7

Please sign in to comment.