diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f194e1747d..68682c788e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -269,7 +269,7 @@ jobs: run: stuart_setup -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.archs }} TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }} - name: Upload Setup Log As An Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: (success() || failure()) && steps.get_ci_file_operations.outputs.setup_supported == 'true' with: name: ${{ matrix.package }}-Setup-Log @@ -283,7 +283,7 @@ jobs: run: stuart_ci_setup -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.archs }} TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }} - name: Upload CI Setup Log As An Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: (success() || failure()) && steps.get_ci_file_operations.outputs.ci_setup_supported == 'true' with: name: ${{ matrix.package }}-CI-Setup-Log @@ -296,7 +296,7 @@ jobs: run: stuart_update -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.archs }} TOOL_CHAIN_TAG=${{ matrix.tool_chain_tag }} - name: Upload Update Log As An Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: success() || failure() with: name: ${{ matrix.package }}-Update-Log @@ -448,7 +448,7 @@ jobs: delete_dirs(build_path) - name: Upload Build Logs As An Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: success() || failure() with: name: ${{ matrix.package }}-Build-Logs @@ -479,7 +479,7 @@ jobs: print(f'sarif_file_path={sarif_path}', file=fh) - name: Upload CodeQL Results (SARIF) As An Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ matrix.package }}-CodeQL-SARIF path: ${{ steps.env_data.outputs.sarif_file_path }} diff --git a/.github/workflows/release-basetools.yml b/.github/workflows/release-basetools.yml index 7d4fa666e7..e72681a154 100644 --- a/.github/workflows/release-basetools.yml +++ b/.github/workflows/release-basetools.yml @@ -77,7 +77,7 @@ jobs: - name: Upload Build Logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: logs-${{ matrix.tool_chain }}-${{ matrix.target }} path: | @@ -86,7 +86,7 @@ jobs: BaseTools/BaseToolsBuild/BASETOOLS_BUILD.txt - name: Upload Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: basetools-${{ matrix.tool_chain }}-${{ matrix.target }} path: ${{ matrix.output_dir }}