Skip to content

Commit 0d54f13

Browse files
Update GitHub Artifact Actions
1 parent 73d4b86 commit 0d54f13

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/buid_arch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203

204204
- name: Upload build artifacts
205205
if: github.event.inputs.build_os == matrix.filter || github.event.inputs.build_os == 'All'
206-
uses: actions/upload-artifact@v4
206+
uses: actions/upload-artifact@v6
207207
with:
208208
name: ${{ matrix.filter }}-artifacts
209209
path: |
@@ -220,7 +220,7 @@ jobs:
220220

221221
- name: Upload yml artifacts
222222
if: github.event.inputs.build_os == matrix.filter || github.event.inputs.build_os == 'All'
223-
uses: actions/upload-artifact@v4
223+
uses: actions/upload-artifact@v6
224224
with:
225225
name: ${{ matrix.filter }}-yml
226226
path: dist_electron/**/*.yml
@@ -253,13 +253,13 @@ jobs:
253253
./scripts/generate-release-notes.sh
254254
255255
- name: Download All Artifacts
256-
uses: actions/download-artifact@v4
256+
uses: actions/download-artifact@v7
257257
with:
258258
pattern: '*-artifacts'
259259
path: ./artifacts
260260

261261
- name: Download YML Artifacts
262-
uses: actions/download-artifact@v4
262+
uses: actions/download-artifact@v7
263263
with:
264264
pattern: '*-yml'
265265
path: ./yml-artifacts

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182

183183
- name: Upload build artifacts
184184
if: github.event.inputs.build_os == matrix.platform || github.event.inputs.build_os == 'All'
185-
uses: actions/upload-artifact@v4
185+
uses: actions/upload-artifact@v6
186186
with:
187187
name: ${{ matrix.os_type }}-${{ matrix.platform == 'Windows x64' && 'x64' || matrix.platform == 'Windows ARM64' && 'arm64' || matrix.platform == 'macOS x64' && 'x64' || matrix.platform == 'macOS ARM64' && 'arm64' || matrix.platform == 'Linux x64' && 'x64' || 'arm64' }}-${{ contains(matrix.os, 'windows') && 'executables' || 'packages' }}
188188
path: |
@@ -198,7 +198,7 @@ jobs:
198198

199199
- name: Upload yml artifacts
200200
if: github.event.inputs.build_os == matrix.platform || github.event.inputs.build_os == 'All'
201-
uses: actions/upload-artifact@v4
201+
uses: actions/upload-artifact@v6
202202
with:
203203
name: ${{ matrix.os_type }}-${{ matrix.platform == 'Windows x64' && 'x64' || matrix.platform == 'Windows ARM64' && 'arm64' || matrix.platform == 'macOS x64' && 'x64' || matrix.platform == 'macOS ARM64' && 'arm64' || matrix.platform == 'Linux x64' && 'x64' || 'arm64' }}-yml
204204
path: dist_electron/**/*.yml
@@ -246,7 +246,7 @@ jobs:
246246
rm -rf node_modules && yarn install
247247
248248
- name: Download all yml artifacts
249-
uses: actions/download-artifact@v4
249+
uses: actions/download-artifact@v7
250250
with:
251251
pattern: '*-yml'
252252
path: ./yml-artifacts

0 commit comments

Comments
 (0)