chore(deps): update actions/upload-artifact action to v4 (#2816)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
8525e244d3
commit
424f654be0
2 changed files with 15 additions and 15 deletions
6
.github/workflows/deploy_github_releases.yml
vendored
6
.github/workflows/deploy_github_releases.yml
vendored
|
@ -35,19 +35,19 @@ jobs:
|
|||
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|
||||
|
||||
- name: Upload non-free release APK
|
||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.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@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.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@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
|
||||
with:
|
||||
name: APS Free Release APK
|
||||
path: app/build/outputs/apk/free/release/app-free-release.apk
|
||||
|
|
24
.github/workflows/pull_request.yml
vendored
24
.github/workflows/pull_request.yml
vendored
|
@ -58,9 +58,9 @@ jobs:
|
|||
|
||||
- name: Upload Kotlin build report
|
||||
if: "${{ always() }}"
|
||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
|
||||
with:
|
||||
name: Build report
|
||||
name: Build report (check-codestyle)
|
||||
path: build/reports/kotlin-build/
|
||||
|
||||
unit-tests:
|
||||
|
@ -89,16 +89,16 @@ jobs:
|
|||
|
||||
- name: (Fail-only) Upload test report
|
||||
if: "${{ failure() }}"
|
||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
|
||||
with:
|
||||
name: Test report
|
||||
name: Test report (unit-tests)
|
||||
path: app/build/reports
|
||||
|
||||
- name: Upload Kotlin build report
|
||||
if: "${{ always() }}"
|
||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
|
||||
with:
|
||||
name: Build report
|
||||
name: Build report (unit-tests)
|
||||
path: build/reports/kotlin-build/
|
||||
|
||||
build-apks:
|
||||
|
@ -127,9 +127,9 @@ jobs:
|
|||
|
||||
- name: Upload Kotlin build report
|
||||
if: "${{ always() }}"
|
||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
|
||||
with:
|
||||
name: Build report
|
||||
name: Build report (build-apks)
|
||||
path: build/reports/kotlin-build/
|
||||
|
||||
check-api:
|
||||
|
@ -158,9 +158,9 @@ jobs:
|
|||
|
||||
- name: Upload Kotlin build report
|
||||
if: "${{ always() }}"
|
||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
|
||||
with:
|
||||
name: Build report
|
||||
name: Build report (check-api)
|
||||
path: build/reports/kotlin-build/
|
||||
|
||||
lint:
|
||||
|
@ -189,7 +189,7 @@ jobs:
|
|||
|
||||
- name: Upload Kotlin build report
|
||||
if: "${{ always() }}"
|
||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
|
||||
with:
|
||||
name: Build report
|
||||
name: Build report (lint)
|
||||
path: build/reports/kotlin-build/
|
||||
|
|
Loading…
Reference in a new issue