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