Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/BuildPlatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
name: 'Build Platform'

- name: Upload Platform Build Logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Platform Build Logs ${{ inputs.tool-chain }} ${{ inputs.target }} ${{ inputs.extra-build-args }}
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
run: stuart_setup -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.ArchList }} TOOL_CHAIN_TAG=VS2022

- name: Upload Setup Log As An Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: (success() || failure()) && steps.get_ci_file_operations.outputs.setup_supported == 'true'
with:
name: ${{ matrix.Package }}-${{ steps.convert_arch_hyphen.outputs.arch_list }}-Setup-Log
Expand All @@ -164,7 +164,7 @@ jobs:
run: stuart_ci_setup -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.ArchList }} TOOL_CHAIN_TAG=VS2022

- name: Upload CI Setup Log As An Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: (success() || failure()) && steps.get_ci_file_operations.outputs.ci_setup_supported == 'true'
with:
name: ${{ matrix.Package }}-${{ steps.convert_arch_hyphen.outputs.arch_list }}-CI-Setup-Log
Expand All @@ -177,7 +177,7 @@ jobs:
run: stuart_update -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.ArchList }} TOOL_CHAIN_TAG=VS2022

- name: Upload Update Log As An Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: success() || failure()
with:
name: ${{ matrix.Package }}-${{ steps.convert_arch_hyphen.outputs.arch_list }}-Update-Log
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
delete_dirs(build_path)

- name: Upload Build Logs As An Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: success() || failure()
with:
name: ${{ matrix.Package }}-${{ steps.convert_arch_hyphen.outputs.arch_list }}-Build-Logs
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:
print(f'upload_sarif_file=false', file=fh)

- name: Upload CodeQL Results (SARIF) As An Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: steps.env_data.outputs.upload_sarif_file == 'true'
with:
name: ${{ matrix.Package }}-${{ steps.convert_arch_hyphen.outputs.arch_list }}-CodeQL-SARIF
Expand Down