Skip to content

Commit 5f0a662

Browse files
committed
change upload action
Signed-off-by: Neil South <[email protected]>
1 parent e9ff61e commit 5f0a662

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,15 +242,15 @@ jobs:
242242

243243
- name: Upload Nuget
244244
if: ${{ matrix.os == 'ubuntu-latest' }}
245-
uses: actions/upload-artifact@v4.0.0
245+
uses: actions/upload-artifact@v3.1.2
246246
with:
247247
name: nuget
248248
path: ${{ github.workspace }}/release/*.nupkg
249249
retention-days: 30
250250

251251
- name: Upload Zipped Plug-ins
252252
if: ${{ matrix.os == 'ubuntu-latest' }}
253-
uses: actions/upload-artifact@v4.0.0
253+
uses: actions/upload-artifact@v3.1.2
254254
with:
255255
name: plug-ins
256256
path: ${{ github.workspace }}/src/Plugins/release/*.zip
@@ -262,7 +262,7 @@ jobs:
262262
needs: [build, unit-test]
263263
if: ${{ ! ( github.event.inputs.nuget ) && ! ( contains(github.ref, 'refs/heads/main') ) }}
264264
steps:
265-
- uses: actions/download-artifact@v3
265+
- uses: actions/download-artifact@v3.1.2
266266
id: download
267267

268268
- name: List artifacts
@@ -287,7 +287,7 @@ jobs:
287287
needs: [build, unit-test]
288288
if: ${{ github.event.inputs.nuget }}
289289
steps:
290-
- uses: actions/download-artifact@v3
290+
- uses: actions/download-artifact@v3.1.2
291291
id: download
292292

293293
- name: List artifacts

0 commit comments

Comments
 (0)