From 0ed463791b2a01d03b28dde06c0f6eab49f98446 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 14:04:17 +0000 Subject: [PATCH] GitHub Action: Bump actions/upload-artifact from 4 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 10 +++++----- .github/workflows/release-basetools.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) 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 }}