Skip to content

Commit 5bc9cc5

Browse files
committed
Updated some workflows to use upload-artifact@v4 (#899)
* Updated to upload-artifact@v4 * Updated to download-artifact@v4
1 parent 5dbe8ad commit 5bc9cc5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/dotnet_provisioner_unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
run: |
111111
mkdir artifacts
112112
113-
- uses: actions/download-artifact@v3
113+
- uses: actions/download-artifact@v4
114114
with:
115115
path: artifacts
116116

@@ -133,4 +133,4 @@ jobs:
133133
if [ -n "$result" ]
134134
then
135135
exit 1
136-
fi
136+
fi

.github/workflows/hirs_unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
fi; popd;'
8585
# Upload build report files
8686
- name: Archive report files
87-
uses: actions/upload-artifact@v3
87+
uses: actions/upload-artifact@v4
8888
with:
8989
name: HIRS_Build_Reports
9090
path: artifacts/upload_reports/*
@@ -95,4 +95,4 @@ jobs:
9595
uses: actions/github-script@v6
9696
with:
9797
script: |
98-
core.setFailed('Build or Unit Test Failed')
98+
core.setFailed('Build or Unit Test Failed')

0 commit comments

Comments
 (0)