Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 424f654

Browse files
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 <[email protected]>
1 parent 8525e24 commit 424f654

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/deploy_github_releases.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ jobs:
3535
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
3636

3737
- name: Upload non-free release APK
38-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
38+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
3939
with:
4040
name: APS Non-Free Release APK
4141
path: app/build/outputs/apk/nonFree/release/app-nonFree-release.apk
4242

4343
- name: Upload non-free release Bundle
44-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
44+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
4545
with:
4646
name: APS Non-Free Release Bundle
4747
path: app/build/outputs/bundle/nonFreeRelease/app-nonFree-release.aab
4848

4949
- name: Upload free release APK
50-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
50+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
5151
with:
5252
name: APS Free Release APK
5353
path: app/build/outputs/apk/free/release/app-free-release.apk

.github/workflows/pull_request.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ jobs:
5858

5959
- name: Upload Kotlin build report
6060
if: "${{ always() }}"
61-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
61+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
6262
with:
63-
name: Build report
63+
name: Build report (check-codestyle)
6464
path: build/reports/kotlin-build/
6565

6666
unit-tests:
@@ -89,16 +89,16 @@ jobs:
8989

9090
- name: (Fail-only) Upload test report
9191
if: "${{ failure() }}"
92-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
92+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
9393
with:
94-
name: Test report
94+
name: Test report (unit-tests)
9595
path: app/build/reports
9696

9797
- name: Upload Kotlin build report
9898
if: "${{ always() }}"
99-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
99+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
100100
with:
101-
name: Build report
101+
name: Build report (unit-tests)
102102
path: build/reports/kotlin-build/
103103

104104
build-apks:
@@ -127,9 +127,9 @@ jobs:
127127

128128
- name: Upload Kotlin build report
129129
if: "${{ always() }}"
130-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
130+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
131131
with:
132-
name: Build report
132+
name: Build report (build-apks)
133133
path: build/reports/kotlin-build/
134134

135135
check-api:
@@ -158,9 +158,9 @@ jobs:
158158

159159
- name: Upload Kotlin build report
160160
if: "${{ always() }}"
161-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
161+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
162162
with:
163-
name: Build report
163+
name: Build report (check-api)
164164
path: build/reports/kotlin-build/
165165

166166
lint:
@@ -189,7 +189,7 @@ jobs:
189189

190190
- name: Upload Kotlin build report
191191
if: "${{ always() }}"
192-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
192+
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
193193
with:
194-
name: Build report
194+
name: Build report (lint)
195195
path: build/reports/kotlin-build/

0 commit comments

Comments
 (0)