From 20dee0e9407f71c5189bb075fc32828c472132e1 Mon Sep 17 00:00:00 2001 From: daywalk3r666 Date: Fri, 14 Oct 2022 07:14:13 +0200 Subject: [PATCH] Update actions/upload-artifact to v3 --- .github/workflows/debug_build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/debug_build.yml b/.github/workflows/debug_build.yml index 526edb80..8384a8d4 100644 --- a/.github/workflows/debug_build.yml +++ b/.github/workflows/debug_build.yml @@ -78,7 +78,7 @@ jobs: fi - name: Attach universal APK file - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ env.APK_BASENAME_PREFIX }}_universal path: | @@ -86,7 +86,7 @@ jobs: ${{ env.APK_DIR_PATH }}/output-metadata.json - name: Attach arm64-v8a APK file - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ env.APK_BASENAME_PREFIX }}_arm64-v8a path: | @@ -94,7 +94,7 @@ jobs: ${{ env.APK_DIR_PATH }}/output-metadata.json - name: Attach armeabi-v7a APK file - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ env.APK_BASENAME_PREFIX }}_armeabi-v7a path: | @@ -102,7 +102,7 @@ jobs: ${{ env.APK_DIR_PATH }}/output-metadata.json - name: Attach x86_64 APK file - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ env.APK_BASENAME_PREFIX }}_x86_64 path: | @@ -110,7 +110,7 @@ jobs: ${{ env.APK_DIR_PATH }}/output-metadata.json - name: Attach x86 APK file - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ env.APK_BASENAME_PREFIX }}_x86 path: | @@ -118,7 +118,7 @@ jobs: ${{ env.APK_DIR_PATH }}/output-metadata.json - name: Attach sha256sums file - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ env.APK_BASENAME_PREFIX }}_sha256sums path: |