Artifacts: Update all workflows to use Artifacts V4

Signed-off-by: Josh Soref <[email protected]>
This commit is contained in:
Josh Soref
2024-04-25 16:11:16 -04:00
parent 2435e57601
commit d51dfabea2
10 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -59,7 +59,7 @@ jobs:
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: .net-app
path: ${{env.DOTNET_ROOT}}/myapp
@@ -75,7 +75,7 @@ jobs:
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: .net-app