Skip to content

Commit bc9ee6f

Browse files
authored
Update upload-artifact actions (#1642)
* Update actions/upload-artifact to v4 * Update other download artifact version * Revert "Update other download artifact version" This reverts commit 0345106. * Use v3 instead
1 parent 2a23304 commit bc9ee6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/desktop.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270
sudo chmod -R +rwx ~/Library/Logs/DiagnosticReports/* || :
271271
272272
- name: Archive crashes and binaries (linux)
273-
uses: actions/upload-artifact@v2
273+
uses: actions/upload-artifact@v3
274274
if: failure() && startsWith(matrix.build_type, 'Debug') && startsWith(matrix.os, 'ubuntu')
275275
with:
276276
name: crashes-${{ matrix.os }}-${{ matrix.build_type }}-${{ matrix.architecture }}-${{ matrix.python_version }}
@@ -279,7 +279,7 @@ jobs:
279279
/tmp/bins/*
280280
281281
- name: Archive crashes (mac)
282-
uses: actions/upload-artifact@v2
282+
uses: actions/upload-artifact@v3
283283
if: failure() && startsWith(matrix.build_type, 'Debug') && startsWith(matrix.os, 'macos')
284284
with:
285285
name: crashes-${{ matrix.os }}-${{ matrix.build_type }}-${{ matrix.architecture }}-${{ matrix.python_version }}-${{ matrix.xcode_version }}

0 commit comments

Comments
 (0)