36
36
37
37
38
38
steps :
39
- - uses : actions/checkout@v3
39
+ - uses : actions/checkout@v4
40
40
- name : Linux deps
41
41
if : contains(matrix.runner, 'ubuntu')
42
42
run : |
@@ -105,31 +105,31 @@ jobs:
105
105
106
106
- name : Upload Windows artifacts (archive)
107
107
if : contains(matrix.runner, 'windows')
108
- uses : actions/upload-artifact@v3
108
+ uses : actions/upload-artifact@v4
109
109
with :
110
110
name : ${{ matrix.target }}
111
111
path : ./build/windows/x64/runner/Release/*
112
112
if-no-files-found : error
113
113
114
114
- name : Upload Windows installer (MSIX)
115
115
if : contains(matrix.runner, 'windows')
116
- uses : actions/upload-artifact@v3
116
+ uses : actions/upload-artifact@v4
117
117
with :
118
118
name : ${{ matrix.target }}-msix
119
119
path : ./build/windows/x64/runner/Release/desktop_adb_file_browser.msix
120
120
if-no-files-found : error
121
121
122
122
# - name: Upload Windows MSIX installer
123
123
# if: contains(matrix.runner, 'windows')
124
- # uses: actions/upload-artifact@v3
124
+ # uses: actions/upload-artifact@v4
125
125
# with:
126
126
# name: ${{ matrix.target }} msix installer
127
127
# path: |
128
128
# ./build/windows/runner/Release/*.msix
129
129
# if-no-files-found: error
130
130
- name : Upload Windows Inno installer
131
131
if : contains(matrix.runner, 'windows')
132
- uses : actions/upload-artifact@v3
132
+ uses : actions/upload-artifact@v4
133
133
with :
134
134
name : ${{ matrix.target }} Inno installer
135
135
path : |
@@ -139,15 +139,15 @@ jobs:
139
139
# Linux
140
140
- name : Upload Linux artifacts (archive)
141
141
if : contains(matrix.runner, 'ubuntu')
142
- uses : actions/upload-artifact@v3
142
+ uses : actions/upload-artifact@v4
143
143
with :
144
144
name : ${{ matrix.target }}
145
145
path : ./build/linux/**/release/bundle/*
146
146
if-no-files-found : error
147
147
148
148
# - name: Upload Linux snap artifacts
149
149
# if: contains(matrix.runner, 'ubuntu')
150
- # uses: actions/upload-artifact@v3
150
+ # uses: actions/upload-artifact@v4
151
151
# with:
152
152
# name: ${{ matrix.target }}
153
153
# path: ./*.snap
@@ -156,7 +156,7 @@ jobs:
156
156
# MacOS
157
157
- name : Upload MacOS artifacts (archive)
158
158
if : contains(matrix.runner, 'mac')
159
- uses : actions/upload-artifact@v3
159
+ uses : actions/upload-artifact@v4
160
160
with :
161
161
name : ${{ matrix.target }}
162
162
path : ./build/macos/Build/Products/Release/result.zip
@@ -169,7 +169,7 @@ jobs:
169
169
runs-on : ubuntu-latest
170
170
steps :
171
171
- name : Download all artifacts
172
- uses : actions/download-artifact@v3
172
+ uses : actions/download-artifact@v4
173
173
with :
174
174
path : artifacts
175
175
0 commit comments