Skip to content

Commit 0e69e89

Browse files
authored
Updating actions/upload-artifact from v4 to v5 (#506)
According to release notes, the major change is supporting Node v24.x, which should not matter when consumed in the github action.
1 parent 69dfb88 commit 0e69e89

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.sync/workflows/leaf/codeql-platform.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ jobs:
326326
run: stuart_setup -c ${{ matrix.build_file }} -t DEBUG TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }}
327327

328328
- name: Upload Setup Log As An Artifact
329-
uses: actions/upload-artifact@v4
329+
uses: actions/upload-artifact@v5
330330
if: (success() || failure()) && steps.get_platform_info.outputs.setup_supported == 'true'
331331
with:
332332
name: ${{ steps.get_platform_info.outputs.pkg_name }}-Setup-Log
@@ -342,7 +342,7 @@ jobs:
342342
run: stuart_ci_setup -c ${{ matrix.build_file }} -t DEBUG TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }}
343343

344344
- name: Upload CI Setup Log As An Artifact
345-
uses: actions/upload-artifact@v4
345+
uses: actions/upload-artifact@v5
346346
if: (success() || failure()) && steps.get_platform_info.outputs.ci_setup_supported == 'true'
347347
with:
348348
name: ${{ steps.get_platform_info.outputs.pkg_name }}-CI-Setup-Log
@@ -357,7 +357,7 @@ jobs:
357357
run: stuart_update -c ${{ matrix.build_file }} -t DEBUG TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }}
358358

359359
- name: Upload Update Log As An Artifact
360-
uses: actions/upload-artifact@v4
360+
uses: actions/upload-artifact@v5
361361
if: success() || failure()
362362
with:
363363
name: ${{ steps.get_platform_info.outputs.pkg_name }}-Update-Log
@@ -513,7 +513,7 @@ jobs:
513513
delete_dirs(build_path)
514514
515515
- name: Upload Build Logs As An Artifact
516-
uses: actions/upload-artifact@v4
516+
uses: actions/upload-artifact@v5
517517
if: success() || failure()
518518
with:
519519
name: ${{ steps.get_platform_info.outputs.pkg_name }}-Build-Logs
@@ -544,7 +544,7 @@ jobs:
544544
print(f'sarif_file_path={sarif_path}', file=fh)
545545
546546
- name: Upload CodeQL Results (SARIF) As An Artifact
547-
uses: actions/upload-artifact@v4
547+
uses: actions/upload-artifact@v5
548548
with:
549549
name: ${{ steps.get_platform_info.outputs.pkg_name }}-CodeQL-SARIF
550550
path: ${{ steps.env_data.outputs.sarif_file_path }}

.sync/workflows/leaf/codeql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ jobs:
275275
run: stuart_setup -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.archs }} TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }}
276276

277277
- name: Upload Setup Log As An Artifact
278-
uses: actions/upload-artifact@v4
278+
uses: actions/upload-artifact@v5
279279
if: (success() || failure()) && steps.get_ci_file_operations.outputs.setup_supported == 'true'
280280
with:
281281
name: ${{ matrix.package }}-Setup-Log
@@ -289,7 +289,7 @@ jobs:
289289
run: stuart_ci_setup -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.archs }} TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }}
290290

291291
- name: Upload CI Setup Log As An Artifact
292-
uses: actions/upload-artifact@v4
292+
uses: actions/upload-artifact@v5
293293
if: (success() || failure()) && steps.get_ci_file_operations.outputs.ci_setup_supported == 'true'
294294
with:
295295
name: ${{ matrix.package }}-CI-Setup-Log
@@ -302,7 +302,7 @@ jobs:
302302
run: stuart_update -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.archs }} TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }}
303303

304304
- name: Upload Update Log As An Artifact
305-
uses: actions/upload-artifact@v4
305+
uses: actions/upload-artifact@v5
306306
if: success() || failure()
307307
with:
308308
name: ${{ matrix.package }}-Update-Log
@@ -454,7 +454,7 @@ jobs:
454454
delete_dirs(build_path)
455455
456456
- name: Upload Build Logs As An Artifact
457-
uses: actions/upload-artifact@v4
457+
uses: actions/upload-artifact@v5
458458
if: success() || failure()
459459
with:
460460
name: ${{ matrix.package }}-Build-Logs
@@ -485,7 +485,7 @@ jobs:
485485
print(f'sarif_file_path={sarif_path}', file=fh)
486486
487487
- name: Upload CodeQL Results (SARIF) As An Artifact
488-
uses: actions/upload-artifact@v4
488+
uses: actions/upload-artifact@v5
489489
with:
490490
name: ${{ matrix.package }}-CodeQL-SARIF
491491
path: ${{ steps.env_data.outputs.sarif_file_path }}

0 commit comments

Comments
 (0)