From 3c9d1787092c4168eaea70a25c2284ef60429f29 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 16:09:39 +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/docker.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/windows.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 73b5fb1..4c2a305 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -23,7 +23,7 @@ jobs: npm install npm run build - name: Upload frontend build artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: frontend-dist path: frontend/dist/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94ac445..2b66aa7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -102,7 +102,7 @@ jobs: run: tar -zcvf s-ui-linux-${{ matrix.platform }}.tar.gz s-ui - name: Upload files to Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: s-ui-linux-${{ matrix.platform }} path: ./s-ui-linux-${{ matrix.platform }}.tar.gz diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9a2f193..d0104d2 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -85,7 +85,7 @@ jobs: zip -r "s-ui-windows-amd64.zip" s-ui-windows - name: Upload files to Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: s-ui-windows-amd64 path: ./s-ui-windows-amd64.zip @@ -155,7 +155,7 @@ jobs: zip -r "s-ui-windows-arm64.zip" s-ui-windows - name: Upload ARM64 files to Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: s-ui-windows-arm64 path: ./s-ui-windows-arm64.zip