From f7cd0d4e124f706d93951af932b7923bd8e8f7a2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Oct 2022 21:15:58 +0000 Subject: [PATCH] Update actions/upload-artifact action to v3 --- .github/workflows/android-build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android-build.yaml b/.github/workflows/android-build.yaml index e070c7dd3..952dfdadf 100644 --- a/.github/workflows/android-build.yaml +++ b/.github/workflows/android-build.yaml @@ -51,12 +51,12 @@ jobs: - name: Build release APKs run: ./gradlew clean assembleRelease - name: Publish PlayStore APK - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: app-release path: app/build/outputs/apk/app/release - name: Publish Github APK - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: app-github-release path: app/build/outputs/apk/github/release