From d6abb61e2b7b99f7a071a36a12c8219992c8e5f6 Mon Sep 17 00:00:00 2001 From: Abhiram <103818282+Azure-Helper@users.noreply.github.com> Date: Mon, 30 Jan 2023 02:26:13 +0530 Subject: [PATCH] ci(build): update workflow actions (#662) - Bump upload-artifact to v3 - Update crowdin/github-action according to new versioning format [https://github.com/crowdin/github-action/releases/tag/v1.6.0] --- .github/workflows/commit-build.yml | 4 ++-- .github/workflows/crowdin.yml | 2 +- .github/workflows/pull-request-build.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/commit-build.yml b/.github/workflows/commit-build.yml index 62c1cec6..bb90180d 100644 --- a/.github/workflows/commit-build.yml +++ b/.github/workflows/commit-build.yml @@ -49,7 +49,7 @@ jobs: - name: Add version to APK run: mv ${{ steps.sign_apk.outputs.signedFile }} revanced-manager-${{ env.RELEASE_VERSION }}.apk - name: Upload APK - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: revanced-manager-${{ env.RELEASE_VERSION }} - path: revanced-manager-${{ env.RELEASE_VERSION }}.apk \ No newline at end of file + path: revanced-manager-${{ env.RELEASE_VERSION }}.apk diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml index 46a32f77..7cc27c6b 100644 --- a/.github/workflows/crowdin.yml +++ b/.github/workflows/crowdin.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v3 - name: Crowdin - uses: crowdin/github-action@1.5.0 + uses: crowdin/github-action@v1 with: config: crowdin.yml upload_sources: true diff --git a/.github/workflows/pull-request-build.yml b/.github/workflows/pull-request-build.yml index 8127f481..177e9cf1 100644 --- a/.github/workflows/pull-request-build.yml +++ b/.github/workflows/pull-request-build.yml @@ -35,7 +35,7 @@ jobs: - name: Add version to APK run: mv build/app/outputs/flutter-apk/app-release.apk revanced-manager-${{ env.RELEASE_VERSION }}.apk - name: Upload APK - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: revanced-manager-${{ env.RELEASE_VERSION }} - path: revanced-manager-${{ env.RELEASE_VERSION }}.apk \ No newline at end of file + path: revanced-manager-${{ env.RELEASE_VERSION }}.apk