From 7439ec6841c478bc90d0dc12719399702ec8d142 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 01:58:05 +0000 Subject: [PATCH] chore(deps): update github artifact actions --- .github/workflows/android-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android-release.yml b/.github/workflows/android-release.yml index 6e24ef6e..042fcc80 100644 --- a/.github/workflows/android-release.yml +++ b/.github/workflows/android-release.yml @@ -113,7 +113,7 @@ jobs: - name: Upload APK as a build artifact # Archives the generated APK with a dynamic, versioned name. This artifact is essential # for passing the APK file to the subsequent `release` job. - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: paperize-${{ steps.get_version.outputs.VERSION_NAME }} path: app/build/outputs/apk/release/paperize-v*.apk @@ -136,7 +136,7 @@ jobs: - name: Download signed APK artifact # Downloads the versioned artifact produced by the `build` job. The pattern ensures # it finds the correct artifact regardless of the specific version number. - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: pattern: paperize-v* path: ./apk-artifact