From 27b07636b44b90c17130a06d79c05c86b7492c0a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:05:20 +0000 Subject: [PATCH] Bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...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/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 233683a..7346f76 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,7 +99,7 @@ jobs: options: "-screen 0 1600x1200x24" - name: Upload Test Results - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() with: name: test-results-${{ matrix.os }} @@ -111,7 +111,7 @@ jobs: !test/projects/**/* - name: Upload screenshots on failure - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: failure() with: name: screenshots-${{ matrix.os }} @@ -120,7 +120,7 @@ jobs: test/logs - name: Upload Bazel JDT Language Server extension - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: success() && matrix.os == 'ubuntu-latest' with: name: server @@ -134,7 +134,7 @@ jobs: # needed for publishing test results from forks steps: - name: Upload - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ci-event-file path: ${{ github.event_path }}