From a5cdd64686eff1d59d829f0f7a7c0d41da05c366 Mon Sep 17 00:00:00 2001 From: Simplxs Date: Sun, 18 Feb 2024 14:15:18 +0800 Subject: [PATCH] upgrade workflow --- .github/workflows/build-apk.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-apk.yml b/.github/workflows/build-apk.yml index d08766a..e5ccbdd 100644 --- a/.github/workflows/build-apk.yml +++ b/.github/workflows/build-apk.yml @@ -22,13 +22,13 @@ jobs: fetch-depth: 0 - name: Setup JDK 17 - uses: actions/setup-java@v4.0.0 + uses: actions/setup-java@v4 with: java-version: 17 distribution: "adopt" - name: Cache Gradle Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.gradle/caches @@ -38,7 +38,7 @@ jobs: restore-keys: gradle-deps - name: Cache Gradle Build - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.gradle/caches/build-cache-* @@ -82,19 +82,19 @@ jobs: echo "|x86_64|$x86_64" >> $GITHUB_STEP_SUMMARY - name: Upload ALL APK RELEASE - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "${{ env.SHAMROCK_VERSION_ALL }}" path: "${{ env.APK_FILE_ALL }}" - name: Upload ARM64 APK RELEASE - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "${{ env.SHAMROCK_VERSION_ARM64 }}" path: "${{ env.APK_FILE_ARM64 }}" - name: Upload X86_64 APK RELEASE - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "${{ env.SHAMROCK_VERSION_x86_64 }}" path: "${{ env.APK_FILE_X86_64 }}" \ No newline at end of file