From beaeec18280a3517c9aedf77fa5b6b32b983c19c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 01:02:52 +0000 Subject: [PATCH] [skip ci][skip deploy] github-actions: Bump actions/upload-artifact 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/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38c7d8c..539dc59 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,12 +40,12 @@ jobs: - name: Build run: npm run build - name: Upload ${{ env.ARTIFACT_NAME__DOCS_BUILD }} artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ env.ARTIFACT_NAME__DOCS_BUILD }} path: ${{ env.ARTIFACT_PATH__DOCS_BUILD }} - name: Upload ${{ env.ARTIFACT_NAME__PACKAGE_BUILD }} artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ env.ARTIFACT_NAME__PACKAGE_BUILD }} path: ${{ env.ARTIFACT_PATH__PACKAGE_BUILD }} @@ -70,7 +70,7 @@ jobs: HOME: /root run: npm run test:e2e - name: Upload ${{ env.ARTIFACT_NAME__DOCS_PLAYWRIGHT_REPORT }} artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 if: always() with: name: ${{ env.ARTIFACT_NAME__DOCS_PLAYWRIGHT_REPORT }}