From 2ca418255bbbdcfba288284dde1994a6545ab4ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 03:03:31 +0000 Subject: [PATCH] build(deps): 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/nodejs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index b32c6f3f..b499673e 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -30,7 +30,7 @@ jobs: - name: Build run: make build - name: Upload build - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-webpack path: dist/* @@ -58,7 +58,7 @@ jobs: - name: Build run: make build-vite - name: Upload build - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-vite path: dist/* @@ -172,7 +172,7 @@ jobs: mv screenshots/*.png screenshots/dist/$aw_server/$aw_version - name: Upload screenshots if: ${{ success() || steps.e2e.conclusion == 'failure'}} - uses: actions/upload-artifact@v4.3.6 + uses: actions/upload-artifact@v6 with: name: screenshots-${{ matrix.aw-server }}-${{ matrix.aw-version }} path: screenshots/dist/* @@ -192,7 +192,7 @@ jobs: mv ~/.cache/activitywatch/log/*/*.log logs/dist/$aw_server/$aw_version - name: Upload logs if: ${{ always() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: logs-${{ matrix.aw-server }}-${{ matrix.aw-version }} path: logs/dist/*