From d2993592be6460bc763ca8ef3b44912e12f9c14e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 16:56:24 +0300 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4 to 7 (#153) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0e8a9fe..53467e5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -90,7 +90,7 @@ jobs: zip -j "$ARCHIVE_NAME" "${FILES[@]}" - name: Upload ZIP artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: archive-${{ matrix.arch }} path: pwsp-*.zip @@ -124,7 +124,7 @@ jobs: fi - name: Upload .deb artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: deb-packages-${{ matrix.arch }} path: target/debian/*.deb diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be15a83..3ea6d0e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -119,7 +119,7 @@ jobs: zip -j "$ARCHIVE_NAME" "${FILES[@]}" - name: Upload ZIP artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: zip-archive-${{ matrix.arch }} path: pwsp-*.zip @@ -144,7 +144,7 @@ jobs: cargo-deb -p pwsp-gui --no-build - name: Upload DEB artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: deb-package-${{ matrix.arch }} path: target/debian/*.deb