diff options
author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2022-03-03 23:38:03 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 23:38:03 +0530 |
commit | 20ae7e9aac5a414f8f0408c11439ad0bc948c07f (patch) | |
tree | 0be6a97c9b73d4ab5d1fd4d8d1a5ae106b3f120d /.github/workflows/deploy_github_releases.yml | |
parent | 9662e4f12a5b7df4a63cfcd2dff4589cb86cddc5 (diff) |
chore(deps): update actions/upload-artifact action to v3 (#1763)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Diffstat (limited to '.github/workflows/deploy_github_releases.yml')
-rw-r--r-- | .github/workflows/deploy_github_releases.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/deploy_github_releases.yml b/.github/workflows/deploy_github_releases.yml index 3b31c2fd..94a96b35 100644 --- a/.github/workflows/deploy_github_releases.yml +++ b/.github/workflows/deploy_github_releases.yml @@ -35,19 +35,19 @@ jobs: SENTRY_DSN: ${{ secrets.SENTRY_DSN }} - name: Upload non-free release APK - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.0.0 with: name: APS Non-Free Release APK path: app/build/outputs/apk/nonFree/release/app-nonFree-release.apk - name: Upload non-free release Bundle - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.0.0 with: name: APS Non-Free Release Bundle path: app/build/outputs/bundle/nonFreeRelease/app-nonFree-release.aab - name: Upload free release APK - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.0.0 with: name: APS Free Release APK path: app/build/outputs/apk/free/release/app-free-release.apk |