Skip to content

Commit 9ad98d9

Browse files
GitHub Action: Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent bf5c1ad commit 9ad98d9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/codeql.yml

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

271271
- name: Upload Setup Log As An Artifact
272-
uses: actions/upload-artifact@v4
272+
uses: actions/upload-artifact@v5
273273
if: (success() || failure()) && steps.get_ci_file_operations.outputs.setup_supported == 'true'
274274
with:
275275
name: ${{ matrix.package }}-Setup-Log
@@ -283,7 +283,7 @@ jobs:
283283
run: stuart_ci_setup -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.archs }} TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }}
284284

285285
- name: Upload CI Setup Log As An Artifact
286-
uses: actions/upload-artifact@v4
286+
uses: actions/upload-artifact@v5
287287
if: (success() || failure()) && steps.get_ci_file_operations.outputs.ci_setup_supported == 'true'
288288
with:
289289
name: ${{ matrix.package }}-CI-Setup-Log
@@ -296,7 +296,7 @@ jobs:
296296
run: stuart_update -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.archs }} TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }}
297297

298298
- name: Upload Update Log As An Artifact
299-
uses: actions/upload-artifact@v4
299+
uses: actions/upload-artifact@v5
300300
if: success() || failure()
301301
with:
302302
name: ${{ matrix.package }}-Update-Log
@@ -448,7 +448,7 @@ jobs:
448448
delete_dirs(build_path)
449449
450450
- name: Upload Build Logs As An Artifact
451-
uses: actions/upload-artifact@v4
451+
uses: actions/upload-artifact@v5
452452
if: success() || failure()
453453
with:
454454
name: ${{ matrix.package }}-Build-Logs
@@ -479,7 +479,7 @@ jobs:
479479
print(f'sarif_file_path={sarif_path}', file=fh)
480480
481481
- name: Upload CodeQL Results (SARIF) As An Artifact
482-
uses: actions/upload-artifact@v4
482+
uses: actions/upload-artifact@v5
483483
with:
484484
name: ${{ matrix.package }}-CodeQL-SARIF
485485
path: ${{ steps.env_data.outputs.sarif_file_path }}

.github/workflows/release-basetools.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777

7878
- name: Upload Build Logs
7979
if: always()
80-
uses: actions/upload-artifact@v4
80+
uses: actions/upload-artifact@v5
8181
with:
8282
name: logs-${{ matrix.tool_chain }}-${{ matrix.target }}
8383
path: |
@@ -86,7 +86,7 @@ jobs:
8686
BaseTools/BaseToolsBuild/BASETOOLS_BUILD.txt
8787
8888
- name: Upload Artifacts
89-
uses: actions/upload-artifact@v4
89+
uses: actions/upload-artifact@v5
9090
with:
9191
name: basetools-${{ matrix.tool_chain }}-${{ matrix.target }}
9292
path: ${{ matrix.output_dir }}

0 commit comments

Comments
 (0)